Skip to content

Commit

Permalink
fix(ci): use docker buildx which should be available on mac as well
Browse files Browse the repository at this point in the history
  • Loading branch information
squakez committed Jan 18, 2024
1 parent eb9b03b commit 679c040
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/kamel-config-cluster-kind/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
steps:
- id: install-cluster
name: Install Cluster
uses: container-tools/kind-action@v2.0.2
uses: container-tools/kind-action@v2.0.3
if: ${{ env.CLUSTER_KIND_CONFIGURED != 'true' }}
with:
version: v0.19.0
Expand Down
2 changes: 1 addition & 1 deletion script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ ifneq (,$(findstring SNAPSHOT,$(DEFAULT_RUNTIME_VERSION)))
endif
@echo "####### Building Camel K operator arch $(IMAGE_ARCH) container image..."
mkdir -p build/_maven_output
docker build --target $(TARGET_STAGE) --platform=linux/$(IMAGE_ARCH) -t $(DOCKER_TAG) -f build/Dockerfile .
docker buildx build --target $(TARGET_STAGE) --platform=linux/$(IMAGE_ARCH) -t $(DOCKER_TAG) -f build/Dockerfile .

# Mainly used for internal CI purposes
image-push:
Expand Down

0 comments on commit 679c040

Please sign in to comment.