Skip to content

Commit

Permalink
during release, retag cli image as well
Browse files Browse the repository at this point in the history
  • Loading branch information
MajoBerger authored Mar 21, 2024
1 parent f08b0eb commit 086ba80
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
docker pull ${{ env.IMAGE_BASE_NAME }}:${{ github.sha }}
docker tag ${{ env.IMAGE_BASE_NAME }}:${{ github.sha }} ${{ env.IMAGE_BASE_NAME }}:${{ github.ref_name }}
docker pull ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.sha }}
docker tag ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.sha }} ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.ref_name }}
- name: push image
run: docker push ${{ env.IMAGE_BASE_NAME }}:${{ github.ref_name }}
run: |
docker push ${{ env.IMAGE_BASE_NAME }}:${{ github.ref_name }}
docker push ${{ env.IMAGE_BASE_NAME }}-cli:${{ github.ref_name }}

0 comments on commit 086ba80

Please sign in to comment.