Skip to content

Commit

Permalink
Run the Verify Deploy job for repository dispatch
Browse files Browse the repository at this point in the history
Followup to #250.
  • Loading branch information
foolip committed Dec 13, 2021
1 parent 2046fc5 commit 5bf6e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# succeeds.
verify-deploy:
name: Verify Deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
if: ${{ (github.event_name == 'push' || github.event_name == 'repository_dispatch') && github.ref == 'refs/heads/main' }}
needs: test
runs-on: ubuntu-20.04
steps:
Expand Down

0 comments on commit 5bf6e71

Please sign in to comment.