Skip to content

Commit

Permalink
Don't skip publish container action when triggered manually
Browse files Browse the repository at this point in the history
  • Loading branch information
xxyzz committed Nov 20, 2023
1 parent 72fb940 commit b1c811f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
publish_container:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
permissions:
contents: read
packages: write
Expand Down

0 comments on commit b1c811f

Please sign in to comment.