From 19348c134e83bf61a1a54d69ca6c61a749cc5609 Mon Sep 17 00:00:00 2001 From: Hans Donner Date: Thu, 22 Feb 2024 01:15:15 +0100 Subject: [PATCH] Also build&push arm docker image --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a9970acb..78c7bd2f 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -76,7 +76,7 @@ jobs: with: push: ${{ (github.event_name == 'release' && github.event.action == 'published') || github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} tags: ${{ steps.prepare.outputs.tags }} - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 - name: "Build and push slim docker image to DockerHub" id: docker_slim_build uses: docker/build-push-action@v5 @@ -84,4 +84,4 @@ jobs: file: ./Dockerfile.slim push: ${{ (github.event_name == 'release' && github.event.action == 'published') || github.event.pull_request.head.repo.full_name == github.repository || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} tags: ${{ steps.prepare.outputs.slim-tags }} - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64