From 5a6cda329a7652630ff7b00ef9ad2aa364757afd Mon Sep 17 00:00:00 2001 From: AnnaShaleva Date: Mon, 21 Mar 2022 18:31:38 +0300 Subject: [PATCH] github: add ability to manually trigger publishing workflow with `latest` tag In case if something goes wrong during release version publishing. --- .github/workflows/publish_to_dockerhub.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_to_dockerhub.yml b/.github/workflows/publish_to_dockerhub.yml index 33dd6ecce..551274139 100644 --- a/.github/workflows/publish_to_dockerhub.yml +++ b/.github/workflows/publish_to_dockerhub.yml @@ -22,6 +22,10 @@ on: description: 'Push images to DockerHub [default: false; examples: true, false]' required: false default: 'false' + use_latest_tag: + description: 'Use `latest` tag while pushing images to DockerHub (applied to Ubuntu image only) [default: false; examples: true, false]' + required: false + default: 'false' # Environment variables. env: @@ -82,7 +86,7 @@ jobs: run: make image - name: Build image with 'latest' tag - if: ${{ github.event_name == 'release' && github.event.release.target_commitish == 'master' }} + if: ${{ (github.event_name == 'release' && github.event.release.target_commitish == 'master') || (github.event_name == 'workflow_dispatch' && github.event.inputs.push_image == 'true' && github.event.inputs.use_latest_tag == 'true') }} run: make image-latest - name: Login to DockerHub @@ -96,7 +100,7 @@ jobs: run: make image-push - name: Push image with 'latest' tag to registry - if: ${{ github.event_name == 'release' && github.event.release.target_commitish == 'master' }} + if: ${{ (github.event_name == 'release' && github.event.release.target_commitish == 'master') || (github.event_name == 'workflow_dispatch' && github.event.inputs.push_image == 'true' && github.event.inputs.use_latest_tag == 'true') }} run: make image-push-latest tests_wsc: