File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -237,17 +237,19 @@ jobs:
237
237
# region Image build
238
238
239
239
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#push
240
- - name : " push|schedule: make ${{ inputs.target }}"
240
+ # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
241
+
242
+ - name : " push|schedule|workflow_dispatch: make ${{ inputs.target }}"
241
243
run : |
242
244
make ${{ inputs.target }}
243
- if : ${{ fromJson(inputs.github).event_name == 'push' || fromJson(inputs.github).event_name == 'schedule' }}
245
+ if : ${{ fromJson(inputs.github).event_name == 'push' ||
246
+ fromJson(inputs.github).event_name == 'schedule' ||
247
+ fromJson(inputs.github).event_name == 'workflow_dispatch' }}
244
248
env :
245
249
IMAGE_TAG : " ${{ steps.calculated_vars.outputs.IMAGE_TAG }}"
246
250
CONTAINER_BUILD_CACHE_ARGS : " --cache-from ${{ env.CACHE }} --cache-to ${{ env.CACHE }}"
247
251
# dependent images were already built and pushed, so just let podman pull it
248
252
BUILD_DEPENDENT_IMAGES : " no"
249
-
250
- # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
251
253
- name : " pull_request: make ${{ inputs.target }}"
252
254
run : |
253
255
make ${{ inputs.target }}
You can’t perform that action at this time.
0 commit comments