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