Skip to content

Commit

Permalink
Fix upload and upload_images targets
Browse files Browse the repository at this point in the history
  • Loading branch information
rbanffy committed Oct 7, 2023
1 parent 5820d59 commit 0685508
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ upload_images: ## Uploads the docker images
docker image push ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}-ppc64le

upload: upload_images ## Uploads the manifest
docker manifest create ${USER}/${OPERATING_SYSTEM}:latest \
docker manifest create ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG} \
--amend ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}-amd64 \
--amend ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}-amd64 \
--amend ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}-armv6 \
--amend ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}-armv7 \
--amend ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}-s390x \
--amend ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}-ppc64le
docker manifest push ${USER}/${OPERATING_SYSTEM}:latest
docker manifest push ${USER}/${OPERATING_SYSTEM}:${IMAGE_TAG}

0 comments on commit 0685508

Please sign in to comment.