Skip to content

Commit

Permalink
Merge pull request #400 from xxyzz/container
Browse files Browse the repository at this point in the history
Don't skip publish container action when triggered manually
  • Loading branch information
xxyzz authored Nov 20, 2023
2 parents 72fb940 + b1c811f commit c43127e
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 c43127e

Please sign in to comment.