aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/docker.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index a0c8bf3..a3e77f3 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -102,9 +102,10 @@ jobs:
102 uses: docker/build-push-action@v3 102 uses: docker/build-push-action@v3
103 with: 103 with:
104 context: . 104 context: .
105 # Due to build time, only building the one currently needed.
106 # If needed, we can add more platforms when requested. 105 # If needed, we can add more platforms when requested.
107 platforms: "linux/amd64" 106 platforms:
107 - linux/amd64
108 - linux/arm64
108 # Do not push pull requests 109 # Do not push pull requests
109 push: ${{ github.event_name != 'pull_request' }} 110 push: ${{ github.event_name != 'pull_request' }}
110 tags: ${{ steps.meta.outputs.tags }} 111 tags: ${{ steps.meta.outputs.tags }}