Skip to content

Commit

Permalink
Unblock release on workflow dispatch (#3389)
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple authored Aug 16, 2024
1 parent 95e2e2d commit c14c5a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
release:
name: Publish new release
runs-on: macos-12
if: github.event.pull_request.merged == true # only merged pull requests must trigger this job
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true }} # only merged pull requests must trigger this job
steps:
- name: Connect Bot
uses: webfactory/ssh-agent@v0.7.0
Expand Down

0 comments on commit c14c5a1

Please sign in to comment.