Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
Build the containers on x86_64, ppc64le, s390x & aarch64 on Github
Browse files Browse the repository at this point in the history
  • Loading branch information
dcermak committed Nov 17, 2022
1 parent 66b7c71 commit f4422df
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v2

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
Expand All @@ -34,7 +37,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
push: ${{ contains(github.ref, 'refs/heads/main') || contains(github.ref, 'refs/tags/') }}
target: deploy
tags: |
Expand All @@ -44,7 +47,7 @@ jobs:
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
push: ${{ contains(github.ref, 'refs/heads/main') || contains(github.ref, 'refs/tags/') }}
target: storage-backend-deploy
tags: |
Expand Down

0 comments on commit f4422df

Please sign in to comment.