Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,10 @@ jobs:
needs:
- plan
- announce
# Use `always() && ...` so this job is not skipped when an unrelated
# upstream job (e.g., `custom-publish-crates`) fails. `announce` itself
# tolerates a `custom-publish-crates` failure, so we mirror that here.
if: ${{ always() && needs.announce.result == 'success' }}
uses: ./.github/workflows/publish-docs.yml
with:
plan: ${{ needs.plan.outputs.val }}
Expand All @@ -373,6 +377,7 @@ jobs:
needs:
- plan
- announce
if: ${{ always() && needs.announce.result == 'success' }}
uses: ./.github/workflows/publish-versions.yml
with:
plan: ${{ needs.plan.outputs.val }}
Expand All @@ -382,6 +387,7 @@ jobs:
needs:
- plan
- announce
if: ${{ always() && needs.announce.result == 'success' }}
uses: ./.github/workflows/publish-mirror.yml
with:
plan: ${{ needs.plan.outputs.val }}
Expand Down
Loading