aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2024-01-24 17:59:29 +0100
committerHimbeerserverDE <himbeerserverde@gmail.com>2024-01-24 17:59:29 +0100
commit3b3ac5debd4b0d5d5a78c06b3350b7cfa9c4a457 (patch)
treef60931f2af8e8388f2ce215d6ae2d9d47852567d
parent989383aa9fc3f6f4881e367a0417ff9520701ed1 (diff)
Revert "run separate builds for amd64 and arm64"
This reverts commit fc55df9297f30f5e98d650c75cdd04eb1d0e0636.
-rw-r--r--.github/workflows/docker.yml13
1 files changed, 2 insertions, 11 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 4b1b75a..3fa067a 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -33,20 +33,11 @@ jobs:
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- - name: Build and push Docker image (amd64)
+ - name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- platforms: linux/amd64
-
- - name: Build and push Docker image (arm64)
- uses: docker/build-push-action@v5
- with:
- context: .
- push: true
- tags: ${{ steps.meta.outputs.tags }}
- labels: ${{ steps.meta.outputs.labels }}
- platforms: linux/arm64
+ platforms: linux/amd64,linux/arm64