Skip to content

Commit

Permalink
Create Docker tag 'latest_release' (#2374)
Browse files Browse the repository at this point in the history
Docker images created during release process will have extra tag 'latest_release'.

This closes #2373.
  • Loading branch information
pszlazak committed Jul 16, 2021
1 parent 756177a commit 4622e4c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/docker.yml
Expand Up @@ -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 }}

0 comments on commit 4622e4c

Please sign in to comment.