Skip to content

Commit

Permalink
fix tag
Browse files Browse the repository at this point in the history
  • Loading branch information
vmorganp committed Feb 8, 2024
1 parent bee31e9 commit 11d4276
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
- name: Tag and Push Image
run: |
env
export IMAGE_NAME=$(echo "$IMAGE_NAME" | tr '[:lower:]')
docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:master
docker tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:master ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.extract_tag.outputs.tag }}
docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.extract_tag.outputs.tag }}
env
docker pull ${{ env.REGISTRY }}/$IMAGE_NAME:master
docker tag ${{ env.REGISTRY }}/$IMAGE_NAME:master ${{ env.REGISTRY }}/$IMAGE_NAME:${{ steps.extract_tag.outputs.tag }}
docker push ${{ env.REGISTRY }}/$IMAGE_NAME:${{ steps.extract_tag.outputs.tag }}

0 comments on commit 11d4276

Please sign in to comment.