We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e8d35f commit 329a2efCopy full SHA for 329a2ef
.github/workflows/docker-publish.yml
@@ -21,6 +21,9 @@ jobs:
21
- name: Checkout repository
22
uses: actions/checkout@v4
23
24
+ - name: Set up QEMU
25
+ uses: docker/setup-qemu-action@v3
26
+
27
- name: Set up Docker Buildx
28
uses: docker/setup-buildx-action@v3
29
@@ -49,6 +52,8 @@ jobs:
49
52
context: .
50
53
file: Dockerfile
51
54
push: ${{ github.event_name != 'pull_request' }}
55
+ load: ${{ github.event_name == 'pull_request' }}
56
+ platforms: ${{ github.event_name == 'pull_request' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
57
tags: ${{ steps.meta.outputs.tags }}
58
labels: ${{ steps.meta.outputs.labels }}
59
cache-from: type=gha
0 commit comments