Skip to content

Commit d0b8be6

Browse files
committed
Remove non-existing value in CI
1 parent cbf26b7 commit d0b8be6

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,23 @@ name: Publish to crates.io
33
on:
44
push:
55
tags:
6-
- 'v*.*.*'
6+
- "v*.*.*"
77

88
env:
99
CARGO_TERM_COLOR: always
1010

1111
jobs:
1212
publish:
13-
1413
runs-on: ubuntu-latest
1514

1615
steps:
1716
- name: Checkout code
1817
uses: actions/checkout@v4
19-
18+
2019
- name: Set up Rust
2120
uses: dtolnay/rust-toolchain@stable
2221
with:
2322
toolchain: stable
24-
override: true
2523

2624
- name: Cache Cargo registry
2725
uses: actions/cache@v4
@@ -41,7 +39,7 @@ jobs:
4139
4240
- name: Build the project
4341
run: cargo build --release
44-
42+
4543
- name: Publish to crates.io
4644
env:
4745
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)