We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00f824f commit 0c0e136Copy full SHA for 0c0e136
.github/workflows/promote-to-stable.yml
@@ -22,7 +22,7 @@ jobs:
22
username: ${{ secrets.GHCR_USER }}
23
password: ${{ secrets.GHCR_PAT }}
24
25
- - name: Pull and retag image
+ - name: Retag image as stable
26
run: |
27
IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/ziti-browzer-bootstrapper
28
VERSION=${{ github.event.inputs.version }}
@@ -34,4 +34,4 @@ jobs:
34
docker tag $IMAGE_NAME:$VERSION $IMAGE_NAME:stable
35
36
# Push the new stable tag
37
- docker push $IMAGE_NAME:stable
+ docker push $IMAGE_NAME:$VERSION $IMAGE_NAME:stable
0 commit comments