1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Docker publish workflow: Add architecture linux/arm64

This commit is contained in:
kalsi-avneet 2025-05-25 14:50:48 +00:00
parent 22630af3a7
commit 7edc6ff258

View file

@ -40,6 +40,14 @@ jobs:
type=schedule,prefix=nightly-,pattern={{date 'YYYYMMDD'}}
type=raw,enable=${{ github.event_name == 'workflow_dispatch' }},value=workflow_dispatch-{{branch}}-{{sha}}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
@ -47,3 +55,4 @@ jobs:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64