Skip to content

Commit 4b29cd9

Browse files
Apply suggestions from code review
Co-authored-by: Jan Brasna <[email protected]>
1 parent e4a060b commit 4b29cd9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/actions/use-cases-and-examples/building-and-testing/building-and-testing-rust.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ We recommend that you have a basic understanding of the Rust language. For more
7979

8080
## Specifying a Rust version
8181

82-
{% data variables.product.prodname_dotcom %}-hosted runners include a recent version of the rustup rust compiler. You can use rustup to report on the version installed on a runner, override the version, and to install additional toolchains. For more information, see [The rustup book](https://rust-lang.github.io/rustup/).
82+
{% data variables.product.prodname_dotcom %}-hosted runners include a recent version of the Rust toolchain. You can use rustup to report on the version installed on a runner, override the version, and to install different toolchains. For more information, see [The rustup book](https://rust-lang.github.io/rustup/).
8383

8484
```yaml copy
8585
- name: Temporarily modify the rust toolchain version
@@ -150,7 +150,7 @@ If there are any errors building and packaging the crate, check the metadata in
150150
After a workflow completes, you can upload the resulting artifacts for analysis or to use in another workflow. You could add these example steps to the workflow to upload an application for use by another workflow.
151151

152152
```yaml copy
153-
- name: Upload {% raw %}<my-app>{% endraw %}
153+
- name: Upload release artifact
154154
uses: {% data reusables.actions.action-upload-artifact %}
155155
with:
156156
name: {% raw %}<my-app>{% endraw %}
@@ -161,12 +161,12 @@ To use the uploaded artifact in a different job, ensure your workflows have the
161161

162162
```yaml copy
163163
- uses: {% data reusables.actions.action-checkout %}
164-
- name: Download {% raw %}<my-app>{% endraw %}
164+
- name: Download release artifact
165165
uses: {% data reusables.actions.action-download-artifact %}
166166
with:
167167
name: {% raw %}<my-app>{% endraw %}
168168
path: ./{% raw %}<my-app>{% endraw %}
169-
- name: Publish {% raw %}<my-app>{% endraw %} binary as a release on {% data variables.product.github %}
169+
- name: Publish built binary to {% data variables.product.github %} releases
170170
- run: |
171171
gh release create v0.1.0 --generate-notes
172172
gh release upload v0.1.0 ./{% raw %}<my-app>/<my-project>#<my-app>{% endraw %}

0 commit comments

Comments
 (0)