Skip to content

Commit

Permalink
allow manually triggering the github build
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Feb 29, 2024
1 parent c62209f commit 823eaef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
pull_request:
branches:
- main
workflow_dispatch:

defaults:
run:
Expand All @@ -22,7 +23,7 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v4
if: github.event_name == 'push'
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
with:
token: ${{ secrets.PUSH_GITHUB_TOKEN }}
- uses: actions/checkout@v4
Expand Down

0 comments on commit 823eaef

Please sign in to comment.