mirror of
https://github.com/openai/codex.git
synced 2026-09-17 12:23:33 +00:00
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:
1
.github/workflows/rust-release.yml
vendored
1
.github/workflows/rust-release.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user