We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1eaaa4 commit 073fdb1Copy full SHA for 073fdb1
.github/workflows/ci.yml
@@ -48,6 +48,16 @@ jobs:
48
49
- run: cargo test --all-targets
50
- run: cargo test --features=symphonia-all --all-targets
51
+
52
+ cargo-yank:
53
+ env:
54
+ CRATESIO_TOKEN: ${{ secrets.CRATESIO_TOKEN }}
55
+ runs-on: ubuntu-latest
56
+ steps:
57
+ - uses: actions/checkout@v4
58
+ - name: Run cargo yank
59
+ run: cargo yank --version '0.20.0' --token $CRATESIO_TOKEN
60
61
cargo-publish:
62
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
63
env:
@@ -116,4 +126,4 @@ jobs:
116
126
git config --global user.email '[email protected]'
117
127
version_name="v$version"
118
128
git tag -a "$version_name" -m "Release for $version_name"
119
- git push origin $version_name
129
+ git push origin $version_name
0 commit comments