Skip to content

Commit

Permalink
Merge pull request #13 from mgiessing/master
Browse files Browse the repository at this point in the history
Added support for ppc64le
  • Loading branch information
pb82 authored Apr 26, 2022
2 parents 09cebcd + 2960d72 commit 33ac1ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
env:
DOCKER_REGISTRY: quay.io
DOCKER_REPOSITORY: grafana-operator/grafana_plugins_init
DOCKER_PLATFORMS: linux/amd64,linux/arm64,linux/s390x
DOCKER_PLATFORMS: linux/amd64,linux/arm64,linux/s390x,linux/ppc64le
steps:
- name: Clone repo and checkout submodules
uses: actions/checkout@v2.3.4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ image/build:
# Build and push a multi-architecture docker image
.PHONY: image/buildx
image/buildx:
docker buildx build --platform linux/amd64,linux/arm64,linux/s390x --push -t ${REG}/${ORG}/${PROJECT}:${TAG} .
docker buildx build --platform linux/amd64,linux/arm64,linux/s390x,linux/ppc64le --push -t ${REG}/${ORG}/${PROJECT}:${TAG} .

.PHONY: image/push
image/push:
Expand Down

0 comments on commit 33ac1ed

Please sign in to comment.