Skip to content

Commit 4e85a57

Browse files
committed
update: code
1 parent 5a9bc2d commit 4e85a57

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
steps:
5656
- name: Checkout
5757
uses: actions/checkout@v4
58-
- name: setup rust
58+
- name: Setup rust
5959
uses: dtolnay/rust-toolchain@stable
6060
with:
6161
toolchain: stable
@@ -96,11 +96,11 @@ jobs:
9696
steps:
9797
- name: Checkout
9898
uses: actions/checkout@v4
99-
- name: setup build
99+
- name: Setup build
100100
uses: dtolnay/rust-toolchain@stable
101101
with:
102102
toolchain: stable
103-
- name: build release
103+
- name: Build release
104104
run: cargo check --release --all-features
105105

106106
publish:
@@ -117,7 +117,7 @@ jobs:
117117
with:
118118
path: ~/.cargo/bin/toml
119119
key: toml-cli-${{ runner.os }}
120-
- name: publish to crates.io
120+
- name: Publish to crates.io
121121
id: publish
122122
env:
123123
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
@@ -155,7 +155,7 @@ jobs:
155155
id: package_info
156156
run: |
157157
echo "package_name=${{ needs.setup.outputs.package_name }}" >> $GITHUB_OUTPUT
158-
- name: check tag status
158+
- name: Check tag status
159159
id: check_tag
160160
run: |
161161
if git tag -l | grep -q "^${{ needs.setup.outputs.tag }}$"; then
@@ -172,7 +172,7 @@ jobs:
172172
echo "remote_tag_exists=false" >> $GITHUB_OUTPUT
173173
echo "🌐 Tag ${{ needs.setup.outputs.tag }} does not exist on remote"
174174
fi
175-
- name: check release status
175+
- name: Check release status
176176
id: check_release
177177
run: |
178178
if gh release view "${{ needs.setup.outputs.tag }}" > /dev/null 2>&1; then

0 commit comments

Comments
 (0)