From 1f570f210fd88edbeac9acda8f052bcb13eea808 Mon Sep 17 00:00:00 2001 From: "ryan@ryanb.tv" Date: Thu, 16 Mar 2023 11:39:21 -0500 Subject: [PATCH] Added additional docker platforms --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f75d500..93a7388 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ on: env: DOCKER_USERNAME: slothcroissant DOCKER_CONTAINER_NAME: caddy-cloudflaredns - DOCKER_TARGET_PLATFORM: linux/amd64 + DOCKER_TARGET_PLATFORM: linux/amd64, linux/arm64, linux/arm/v8, linux/arm/v7 jobs: build: @@ -52,7 +52,7 @@ jobs: uses: docker/build-push-action@v3 with: context: . - platforms: ${{ steps.prepare.outputs.docker_platform }} + platforms: ${{ env.DOCKER_TARGET_PLATFORM }} push: true tags: | ${{ env.DOCKER_USERNAME }}/${{ env.DOCKER_CONTAINER_NAME }}:${{ steps.prepare.outputs.tag }}