From 1dcd8b008d15ef0862ae785c76d1419cca930e15 Mon Sep 17 00:00:00 2001 From: Jacob Tomlinson Date: Mon, 23 Sep 2024 15:35:01 +0100 Subject: [PATCH] Add arm builds (#66) --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fc60334..e86d7bd 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,6 +12,8 @@ jobs: - name: Get release version id: get_version run: echo ::set-env name=RELEASE_VERSION::$(echo $GITHUB_REF | cut -d / -f 3) + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 - name: Publish to Registry uses: elgohr/Publish-Docker-Github-Action@v5 with: @@ -20,3 +22,4 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} registry: ghcr.io tags: "latest,${{ env.RELEASE_VERSION }}" + platforms: linux/amd64,linux/arm64