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:
237237 # region Image build
238238
239239 # 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 }}"
241243 run : |
242244 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' }}
244248 env :
245249 IMAGE_TAG : " ${{ steps.calculated_vars.outputs.IMAGE_TAG }}"
246250 CONTAINER_BUILD_CACHE_ARGS : " --cache-from ${{ env.CACHE }} --cache-to ${{ env.CACHE }}"
247251 # dependent images were already built and pushed, so just let podman pull it
248252 BUILD_DEPENDENT_IMAGES : " no"
249-
250- # https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request
251253 - name : " pull_request: make ${{ inputs.target }}"
252254 run : |
253255 make ${{ inputs.target }}
You can’t perform that action at this time.
0 commit comments