We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4a21d4f + 1f4719d commit 462d8a5Copy full SHA for 462d8a5
.github/workflows/registry-actions.yml
@@ -126,8 +126,10 @@ jobs:
126
docker "${GITHUB_MANIFEST[@]}"
127
# Push to GitHub Packages
128
docker manifest push ${GITHUB_IMAGE}:${VERSION}-edge
129
- docker manifest create ${GITHUB_IMAGE}:latest ${GITHUB_IMAGE}:${VERSION}-edge
130
- docker manifest push ${GITHUB_IMAGE}:latest
+ # pulling back the complete image to tag it as latest
+ docker pull ${GITHUB_IMAGE}:${VERSION}-edge
131
+ docker tag ${GITHUB_IMAGE}:${VERSION}-edge ${GITHUB_IMAGE}:latest
132
+ docker push ${GITHUB_IMAGE}:latest
133
134
- name: Build and Push Docker Image (Stable Channel)
135
if: github.event.inputs.workflow_choice == 'stable' || github.event.inputs.workflow_choice == 'both'
0 commit comments