Skip to content

Commit

Permalink
fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Jul 2, 2024
1 parent f45641d commit 7127812
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:
- name: Publish bootstrap provider image
run: |
make BOOTSTRAP_IMG_TAG=${{ env.VERSION }} docker-push-bootstrap
make docker-manifest-bootstrap
make BOOTSTRAP_IMG_TAG=${{ env.VERSION }} docker-manifest-bootstrap
- name: Publish controlplane provider image
run: |
make CONTROLPLANE_IMG_TAG=${{ env.VERSION }} docker-push-controlplane
make docker-manifest-controlplane
make CONTROLPLANE_IMG_TAG=${{ env.VERSION }} docker-manifest-controlplane
- name: Build manifests
run: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ docker-push-bootstrap: docker-push-bootstrap-amd64 docker-push-bootstrap-arm64
.PHONY: docker-manifest-bootstrap
docker-manifest-bootstrap: docker-push-bootstrap
docker manifest rm ${BOOTSTRAP_IMG} || true
docker manifest create ${BOOTSTRAP_IMG} --amend ${BOOTSTRAP_IMG}-amd64 --amend ${BOOTSTRAP_IMG}-arm64
docker manifest create ${BOOTSTRAP_IMG}--amend ${BOOTSTRAP_IMG}-amd64 --amend ${BOOTSTRAP_IMG}-arm64
docker manifest annotate ${BOOTSTRAP_IMG} ${BOOTSTRAP_IMG}-amd64 --arch=amd64
docker manifest annotate ${BOOTSTRAP_IMG} ${BOOTSTRAP_IMG}-arm64 --arch=arm64
docker manifest push ${BOOTSTRAP_IMG}
Expand Down

0 comments on commit 7127812

Please sign in to comment.