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 8e7d9e0 commit 265ee70Copy full SHA for 265ee70
.github/workflows/nightly-publish.yml
@@ -11,7 +11,8 @@ on:
11
jobs:
12
publish-nightly:
13
runs-on: ubuntu-latest
14
- if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
+ # Publish on every commit to main, regardless of QA workflow outcome
15
+ if: ${{ github.event_name == 'workflow_dispatch' || (github.event.workflow_run && github.event.workflow_run.head_branch == 'main') }}
16
17
permissions:
18
contents: read # No tags pushed → read is enough.
0 commit comments