Skip to content

Commit 36777dd

Browse files
authored
DOCS-2461: Address upload modules feedback (#4188)
1 parent c168ef9 commit 36777dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: docs/operate/get-started/other-hardware/manage-modules.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Use [GitHub Actions](https://docs.github.com/actions) to automatically build and
4545

4646
1. Push your changes to your module GitHub repository.
4747

48-
{{% alert title="Note" color="note" %}}
48+
{{% alert title="Tip" color="tip" %}}
4949

5050
If you used `viam module generate` to create your module and enabled cloud build, all you need to do to trigger a new build is create a tag and publish a release in GitHub as you did when you [first published the module](/operate/get-started/other-hardware/#upload-your-module).
5151

@@ -99,7 +99,7 @@ At the end of your <file>meta.json</file>, add the build configuration:
9999
}
100100
```
101101

102-
{{%expand "Click to view example setup.sh" %}}
102+
{{%expand "Click to view example setup.sh for a Python module" %}}
103103

104104
```sh {class="command-line" data-prompt="$"}
105105
#!/bin/bash
@@ -124,7 +124,7 @@ pip3 install -r requirements.txt
124124

125125
{{% /expand%}}
126126

127-
{{%expand "Click to view example build.sh (with setup.sh)" %}}
127+
{{%expand "Click to view example build.sh (with setup.sh) for a Python module" %}}
128128

129129
```sh { class="command-line" data-prompt="$"}
130130
#!/bin/bash
@@ -135,7 +135,7 @@ tar -czvf dist/archive.tar.gz <PATH-TO-EXECUTABLE>
135135

136136
{{% /expand%}}
137137

138-
{{%expand "Click to view example build.sh (without setup.sh)" %}}
138+
{{%expand "Click to view example build.sh (without setup.sh) for a Python module" %}}
139139

140140
```sh { class="command-line" data-prompt="$"}
141141
#!/bin/bash

0 commit comments

Comments
 (0)