We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9cc1da commit d63e25aCopy full SHA for d63e25a
.github/workflows/cicd.yml
@@ -37,9 +37,9 @@ jobs:
37
- name: Push release image to GitHub Container Registry
38
if: startsWith(github.ref, 'refs/tags/v')
39
run: |
40
- docker tag ghcr.io/${REPO}:${{ github.ref }} ghcr.io/${REPO}:${{ github.ref_name }}
41
- docker tag ghcr.io/${REPO}:${{ github.ref }} ghcr.io/${REPO}:stable
42
- docker tag ghcr.io/${REPO}:${{ github.ref }} ghcr.io/${REPO}:latest
+ docker tag ghcr.io/${REPO}:${{ github.sha }} ghcr.io/${REPO}:${{ github.ref_name }}
+ docker tag ghcr.io/${REPO}:${{ github.sha }} ghcr.io/${REPO}:stable
+ docker tag ghcr.io/${REPO}:${{ github.sha }} ghcr.io/${REPO}:latest
43
docker push ghcr.io/${REPO}:${{ github.ref_name }}
44
docker push ghcr.io/${REPO}:stable
45
docker push ghcr.io/${REPO}:latest
0 commit comments