From 4622e4cb821efdc22d855eac586cb58d55426943 Mon Sep 17 00:00:00 2001 From: pszlazak Date: Fri, 16 Jul 2021 16:26:29 +0200 Subject: [PATCH] Create Docker tag 'latest_release' (#2374) Docker images created during release process will have extra tag 'latest_release'. This closes #2373. --- .github/workflows/docker.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 419ec74..4bb41a1 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -40,5 +40,14 @@ jobs: push: true tags: pyfound/black:latest,pyfound/black:${{ env.GIT_TAG }} + - name: Build and push latest_release tag + if: ${{ github.event_name == 'release' && github.event.action == 'created' }} + uses: docker/build-push-action@v2 + with: + context: . + platforms: linux/amd64,linux/arm64 + push: true + tags: pyfound/black:latest_release + - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} -- 2.39.2