ci: update latest tag on release as well

This commit is contained in:
Vladislav Yarmak 2021-06-09 18:30:54 +03:00
parent d8cb8fa566
commit aff1754a94
1 changed files with 3 additions and 3 deletions

View File

@ -32,8 +32,8 @@ jobs:
id: imgtag id: imgtag
with: with:
cond: ${{ github.event_name == 'release' }} cond: ${{ github.event_name == 'release' }}
if_true: ${{ env.RELEASE_VERSION }} if_true: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:${{ env.RELEASE_VERSION }},${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:latest
if_false: latest if_false: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:latest
- -
name: Set up QEMU name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
@ -54,5 +54,5 @@ jobs:
context: . context: .
platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7 platforms: linux/amd64,linux/arm64,linux/386,linux/arm/v7
push: true push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }}:${{ steps.imgtag.outputs.value }} tags: ${{ steps.imgtag.outputs.value }}
build-args: 'GIT_DESC=${{steps.tagger.outputs.tag}}' build-args: 'GIT_DESC=${{steps.tagger.outputs.tag}}'