Skip to content

Commit 462d8a5

Browse files
authored
Merge pull request #27 from arelange/registry-arm64
last last
2 parents 4a21d4f + 1f4719d commit 462d8a5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/registry-actions.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,10 @@ jobs:
126126
docker "${GITHUB_MANIFEST[@]}"
127127
# Push to GitHub Packages
128128
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
129+
# pulling back the complete image to tag it as latest
130+
docker pull ${GITHUB_IMAGE}:${VERSION}-edge
131+
docker tag ${GITHUB_IMAGE}:${VERSION}-edge ${GITHUB_IMAGE}:latest
132+
docker push ${GITHUB_IMAGE}:latest
131133
132134
- name: Build and Push Docker Image (Stable Channel)
133135
if: github.event.inputs.workflow_choice == 'stable' || github.event.inputs.workflow_choice == 'both'

0 commit comments

Comments
 (0)