Skip to content

Commit

Permalink
Update deploy.yaml to include workflow_dispatch event
Browse files Browse the repository at this point in the history
  • Loading branch information
Flagro committed Mar 3, 2024
1 parent 1e35ab2 commit 46f3118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event.workflow_run.conclusion == 'success' }} or ${{ github.event_name == 'workflow_dispatch' }}
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down

0 comments on commit 46f3118

Please sign in to comment.