We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 838c992 commit facdf91Copy full SHA for facdf91
1 file changed
.github/workflows/publish.yml
@@ -9,14 +9,11 @@ jobs:
9
name: Publish
10
runs-on: ubuntu-latest
11
steps:
12
- - name: Checkout sources
13
- uses: actions/checkout@v2
14
- - name: Install stable toolchain
15
- uses: actions-rs/toolchain@v1
16
- with:
17
- profile: minimal
+ - uses: actions/checkout@v3
+ - uses: actions-rs/toolchain@v1
+ with:
18
toolchain: stable
19
override: true
20
- - run: cargo publish --token ${CARGO_TOKEN}
21
- env:
22
- CRATES_TOKEN: ${{ secrets.CARGO_TOKEN }}
+ - uses: katyo/publish-crates@v2
+ registry-token: ${{ secrets.CARGO_TOKEN }}
0 commit comments