Skip to content

Commit

Permalink
CI: Also push image on workflow_dispatch event
Browse files Browse the repository at this point in the history
  • Loading branch information
sjohannes committed Jul 30, 2023
1 parent 18401b4 commit 440b05b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@ jobs:
- name: History
run: docker history "$IMAGE"
- name: Push
if: (github.event_name == 'push' || github.event_name == 'schedule') && github.ref == 'refs/heads/master'
if: (github.event_name == 'push' || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/master'
run: docker push "$IMAGE"

0 comments on commit 440b05b

Please sign in to comment.