Skip to content

Commit e0c9a21

Browse files
committed
it should work
1 parent 5bd18aa commit e0c9a21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-arm-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,5 @@ jobs:
6161
make build push=true
6262
- name: fuse images in the registry
6363
run: |
64-
export DOCKER_IMAGE_TAG="$TAG_PREFIX-latest-arm64"
64+
export DOCKER_IMAGE_TAG="$TAG_PREFIX-latest"
6565
make docker-image-fuse SUFFIX=arm64

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,4 +871,4 @@ release-hotfix release-staging-hotfix: ## Helper to create a hotfix release in G
871871
.PHONY: docker-image-fuse
872872
docker-image-fuse:
873873
$(foreach service, $(SERVICES_NAMES_TO_BUILD),\
874-
docker buildx imagetools --tag $(DOCKER_REGISTRY)/$(service):$(DOCKER_IMAGE_TAG) $(DOCKER_REGISTRY)/$(service):$(DOCKER_IMAGE_TAG)-$(SUFFIX) $(DOCKER_REGISTRY)/$(service):$(DOCKER_IMAGE_TAG))
874+
docker buildx imagetools create --tag $(DOCKER_REGISTRY)/$(service):$(DOCKER_IMAGE_TAG) $(DOCKER_REGISTRY)/$(service):$(DOCKER_IMAGE_TAG)-$(SUFFIX) $(DOCKER_REGISTRY)/$(service):$(DOCKER_IMAGE_TAG);)

0 commit comments

Comments
 (0)