Attempt docker release fix 3

This commit is contained in:
Cohee 2024-05-20 23:20:28 +03:00
parent 071f232611
commit 68ade7b384

View File

@ -65,7 +65,11 @@ jobs:
id: metadata
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: ${{ env.BRANCH_NAME }}
# Release version tag if the workflow is triggered by a release
# Branch name tag if the workflow is triggered by a push
tags: |
${{ github.event_name == 'release' && github.ref_name }}
${{ github.event_name != 'release' && env.BRANCH_NAME }}
# Login into package repository as the person who created the release
- name: Log in to the Container registry
@ -92,7 +96,5 @@ jobs:
- name: Docker tag latest and push
if: ${{ github.event_name == 'release' }}
run: |
IMAGE_NAME="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}"
docker pull $IMAGE_NAME:${{ github.ref_name }}
docker tag $IMAGE_NAME:${{ github.ref_name }} $IMAGE_NAME:latest
docker push $IMAGE_NAME:latest