Create Docker tag 'latest_release' (#2374)

Docker images created during release process will have extra tag 'latest_release'.

This closes #2373.
This commit is contained in:
pszlazak 2021-07-16 16:26:29 +02:00 committed by GitHub
parent 756177a617
commit 4622e4cb82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 }}