aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Leonhardt Koepsell <hello@lnhrdt.com>2022-08-28 03:57:45 -0500
committerLibravatar GitHub <noreply@github.com>2022-08-28 09:57:45 +0100
commit9eaac31a11fc3ee549d715a1500d93dd0c77eb92 (patch)
tree1d365e5f355307420b49ab3df7623121d1a7e6a4
parentUpdate submodules [skip ci] (diff)
downloadferdium-server-9eaac31a11fc3ee549d715a1500d93dd0c77eb92.tar.gz
ferdium-server-9eaac31a11fc3ee549d715a1500d93dd0c77eb92.tar.zst
ferdium-server-9eaac31a11fc3ee549d715a1500d93dd0c77eb92.zip
Add a linux/arm64 architecture variant to the official container (v2) (#50)
* Add a linux/arm64 architecture variant to the official container Fixes ferdium/ferdium-server#45 * Use a CSV instead of a list to configure docker/build-push-action platform Fixes ferdium/ferdium-server#45
-rw-r--r--.github/workflows/docker.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index a0c8bf3..0475d0a 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -102,9 +102,8 @@ 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: linux/amd64,linux/arm64
108 # Do not push pull requests 107 # Do not push pull requests
109 push: ${{ github.event_name != 'pull_request' }} 108 push: ${{ github.event_name != 'pull_request' }}
110 tags: ${{ steps.meta.outputs.tags }} 109 tags: ${{ steps.meta.outputs.tags }}