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 d1750e2 commit 71455b5Copy full SHA for 71455b5
.github/workflows/ci.yml
@@ -206,7 +206,8 @@ jobs:
206
run: exit 1
207
208
release:
209
- if: startsWith(github.ref, 'refs/tags/')
+ # Some dependencies of the `ci-passed` job might be skipped, but we still want to run if the `ci-passed` job succeeded.
210
+ if: always() && startsWith(github.ref, 'refs/tags/') && needs.ci-passed.result == 'success'
211
name: Publish to crates.io
212
needs: [ ci-passed ]
213
runs-on: ubuntu-latest
0 commit comments