Explicitly gate DotSlash publishing on release success (#45746)

## What changed

Set the `publish-dotslash` job condition to `!cancelled() && needs.release.result == 'success'` so it runs after a successful release unless the workflow is cancelled.

GitOrigin-RevId: 38e7a00fc50839b660e2d0cfed71002338387ffe
This commit is contained in:
chess
2026-09-15 17:43:49 +00:00
committed by copyberry
parent db078158c3
commit 8a30bc31ef

View File

@@ -1719,6 +1719,7 @@ jobs:
publish-dotslash:
name: publish-dotslash
needs: release
if: ${{ !cancelled() && needs.release.result == 'success' }}
runs-on: ubuntu-latest
permissions:
contents: write