aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/docker.yml
diff options
context:
space:
mode:
authorLibravatar Leonhardt Koepsell <hello@lnhrdt.com>2022-08-06 03:16:09 -0700
committerLibravatar GitHub <noreply@github.com>2022-08-06 11:16:09 +0100
commitf1e72c0ceacacb6a0f8152509a18e3136823840a (patch)
treec74a2ae7cdc34d4155f0e56e1e50ff2d9c9051f1 /.github/workflows/docker.yml
parent1.3.10 [skip ci] (diff)
downloadferdium-server-f1e72c0ceacacb6a0f8152509a18e3136823840a.tar.gz
ferdium-server-f1e72c0ceacacb6a0f8152509a18e3136823840a.tar.zst
ferdium-server-f1e72c0ceacacb6a0f8152509a18e3136823840a.zip
Add a linux/arm64 architecture variant to the official container (#46)
Fixes ferdium/ferdium-server#45
Diffstat (limited to '.github/workflows/docker.yml')
-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 }}