File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6262 image : ${{ env.IMAGE }}
6363 tag : ${{ env.GIT_TAG }}-${{ matrix.os }}-${{ matrix.arch }}
6464 make-target : push-image
65+ platforms : ${{ matrix.os }}/${{ matrix.arch }}
6566
6667 public-repo : ${{ env.REPO }}
6768 public-username : ${{ env.DOCKER_USERNAME }}
7980 image : ${{ env.IMAGE }}
8081 tag : ${{ env.GIT_TAG }}-${{ matrix.os }}-${{ matrix.arch }}
8182 make-target : push-image
83+ platforms : ${{ matrix.os }}/${{ matrix.arch }}
8284
8385 push-to-public : false
8486
98100 image : ${{ env.IMAGE }}
99101 tag : ${{ env.GIT_TAG }}-${{ matrix.os }}-${{ matrix.arch }}
100102 make-target : push-image
103+ platforms : ${{ matrix.os }}/${{ matrix.arch }}
101104
102105 push-to-public : false
103106
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ ifndef TARGET_PLATFORMS
2626endif
2727
2828TAG ?= ${TAG}
29+ PRIME_RIBS ?= ${PRIME_RIBS}
2930
3031export DOCKER_BUILDKIT? =1
3132
@@ -50,4 +51,4 @@ push-image:
5051
5152.PHONY : publish-manifest
5253publish-manifest : # # Create and push the runtime manifest
53- ./scripts/publish-manifest
54+ IMAGE= $( IMAGE ) ./scripts/publish-manifest
Original file line number Diff line number Diff line change @@ -15,5 +15,5 @@ docker buildx imagetools create \
1515 " ${IMAGE} -linux-arm64"
1616
1717if [[ -n " ${IID_FILE} " ]]; then
18- docker buildx imagetools inspect " ${IMAGE} "
18+ docker buildx imagetools inspect --format " {{json .Manifest}} " ${IMAGE} | jq -r ' .digest ' > ${IID_FILE}
1919fi
You can’t perform that action at this time.
0 commit comments