We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817d942 commit 3c2faa3Copy full SHA for 3c2faa3
.github/workflows/ci.yml
@@ -55,6 +55,8 @@ jobs:
55
- uses: actions/checkout@v3
56
- name: Log in to registry
57
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
58
+ - name: Set up QEMU
59
+ uses: docker/setup-qemu-action@v2
60
- name: Set up Docker Buildx
61
id: buildx
62
uses: docker/setup-buildx-action@master
@@ -66,7 +68,7 @@ jobs:
66
68
with:
67
69
context: .
70
push: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' }}
- platforms: linux/amd64
71
+ platforms: linux/amd64,linux/arm64
72
tags: |
73
ghcr.io/${{ github.repository }}:${{ github.sha }}
74
build-args: |
0 commit comments