Skip to content

Commit 073fdb1

Browse files
committed
use CI to yank partially broken 0.20.0
1 parent f1eaaa4 commit 073fdb1

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,16 @@ jobs:
4848
4949
- run: cargo test --all-targets
5050
- 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+
5161
cargo-publish:
5262
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
5363
env:
@@ -116,4 +126,4 @@ jobs:
116126
git config --global user.email '[email protected]'
117127
version_name="v$version"
118128
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

Comments
 (0)