We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0508913 commit 58d7939Copy full SHA for 58d7939
.github/workflows/build_image.yml
@@ -7,14 +7,15 @@ on:
7
types:
8
- completed
9
workflow_dispatch:
10
+ push:
11
12
concurrency:
13
group: ${{ github.workflow }}-${{ github.ref }}
14
cancel-in-progress: true
15
16
jobs:
17
build:
- if: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' }}
18
+ if: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success' && startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' || github.event_name == 'push' }}
19
runs-on: ubuntu-latest
20
21
defaults:
0 commit comments