Skip to content

Commit f8348e0

Browse files
committed
pull...
1 parent ce04508 commit f8348e0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/docker-attendee-gate.jsonnet

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
name: 'Push arm64 tag for Lambda', // doesnt support manifest
77
run: |||
88
dgst="$(docker buildx imagetools inspect --raw "${REPO}:${SHA}" | jq -r '.manifests[] | select(.platform.architecture == "arm64" and .platform.os == "linux") | .digest')"
9-
docker buildx imagetools create --tag "${REPO}:${SHA}-arm64" "${REPO}@${dgst}"
9+
docker pull "${REPO}@${dgst}"
10+
docker tag "${REPO}@${dgst}" "${REPO}:${SHA}-arm64"
11+
docker push "${REPO}:${SHA}-arm64"
1012
|||,
1113
env: {
1214
REPO: std.format('${{ steps.login-ecr.outputs.registry }}/%s', 'attendee-gate'),

.github/workflows/docker-attendee-gate.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)