Skip to content

Commit

Permalink
Fixes conditional push and adds dispatching
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonb5 committed Oct 11, 2023
1 parent 66f96f1 commit d5ac3b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
paths:
- 'docker/**'

workflow_dispatch:

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
Expand Down Expand Up @@ -51,7 +53,7 @@ jobs:
with:
target: base
context: docker/
push: ${{ github.event == 'push' }}
push: ${{ github.event_name == 'push' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
Expand Down

0 comments on commit d5ac3b0

Please sign in to comment.