1515 # We use local reusable workflows to make architecture clean and simple
1616 # https://docs.github.com/en/actions/sharing-automations/reusing-workflows
1717 - " .github/workflows/docker-build-test-upload.yml"
18+ - " .github/workflows/docker-tag-merge.yml"
1819 - " .github/workflows/docker-tag-push-merge.yml"
20+ - " .github/workflows/docker-tag-push.yml"
1921 - " .github/workflows/docker-wiki-update.yml"
2022
2123 # We use local composite actions to combine multiple workflow steps within one action
3941 paths :
4042 - " .github/workflows/docker.yml"
4143 - " .github/workflows/docker-build-test-upload.yml"
44+ - " .github/workflows/docker-tag-merge.yml"
4245 - " .github/workflows/docker-tag-push-merge.yml"
46+ - " .github/workflows/docker-tag-push.yml"
4347 - " .github/workflows/docker-wiki-update.yml"
4448
4549 - " .github/actions/apply-single-tags/action.yml"
@@ -375,7 +379,7 @@ jobs:
375379 # contributed-recipes will give an error if the image is not yet built and uploaded
376380 needs : [aarch64-base, x86_64-base, aarch64-minimal, x86_64-minimal]
377381
378- tag-push :
382+ tag-push-merge :
379383 uses : ./.github/workflows/docker-tag-push-merge.yml
380384 with :
381385 image : ${{ matrix.image }}
@@ -442,7 +446,7 @@ jobs:
442446 ]
443447 if : ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
444448
445- tag-push-fast :
449+ tag-push-merge- fast :
446450 uses : ./.github/workflows/docker-tag-push-merge.yml
447451 with :
448452 image : ${{ matrix.image }}
@@ -459,14 +463,14 @@ jobs:
459463
460464 wiki-update :
461465 uses : ./.github/workflows/docker-wiki-update.yml
462- needs : tag-push
466+ needs : tag-push-merge
463467 if : ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
464468 permissions :
465469 contents : write
466470
467471 wiki-update-fast :
468472 uses : ./.github/workflows/docker-wiki-update.yml
469- needs : tag-push-fast
473+ needs : tag-push-merge- fast
470474 if : contains(github.event.pull_request.title, '[FAST_BUILD]')
471475 permissions :
472476 contents : write
0 commit comments