From 9eaac31a11fc3ee549d715a1500d93dd0c77eb92 Mon Sep 17 00:00:00 2001 From: Leonhardt Koepsell Date: Sun, 28 Aug 2022 03:57:45 -0500 Subject: Add a linux/arm64 architecture variant to the official container (v2) (#50) * Add a linux/arm64 architecture variant to the official container Fixes ferdium/ferdium-server#45 * Use a CSV instead of a list to configure docker/build-push-action platform Fixes ferdium/ferdium-server#45 --- .github/workflows/docker.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a0c8bf3..0475d0a 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -102,9 +102,8 @@ jobs: uses: docker/build-push-action@v3 with: context: . - # Due to build time, only building the one currently needed. # If needed, we can add more platforms when requested. - platforms: "linux/amd64" + platforms: linux/amd64,linux/arm64 # Do not push pull requests push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} -- cgit v1.2.3-54-g00ecf