File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ permissions:
1515
1616jobs :
1717 set-staging-version :
18- # Only run for manual dispatch on main branch
19- if : ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' }}
18+ # Run for manual dispatch on any branch (nightly releases)
19+ if : ${{ github.event_name == 'workflow_dispatch' }}
2020 runs-on : ubuntu-latest
2121 steps :
2222 - name : Checkout code
3333 VERSION : ${{ steps.set-staging-version.outputs.VERSION }}
3434
3535 publish-npm-staging :
36- # Only run for manual dispatch on main branch
37- if : ${{ github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main' }}
36+ # Run for manual dispatch on any branch (nightly releases)
37+ if : ${{ github.event_name == 'workflow_dispatch' }}
3838 uses : ./.github/workflows/reusable-npm.yml
3939 needs : set-staging-version
4040 with :
You can’t perform that action at this time.
0 commit comments