We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f41baf commit 82acfd6Copy full SHA for 82acfd6
.github/workflows/ci.yml
@@ -32,6 +32,9 @@ jobs:
32
username: ${{ github.actor }}
33
password: ${{ secrets.GITHUB_TOKEN }}
34
35
+ - name: Set up QEMU
36
+ uses: docker/setup-qemu-action@v3
37
+
38
- name: Build and export to Docker local cache
39
uses: docker/build-push-action@v6
40
env:
@@ -40,6 +43,7 @@ jobs:
43
context: .
41
44
# Need load and tags so we can test it below
42
45
load: true
46
+ platforms: linux/amd64,linux/arm64
47
tags: tag_for_testing
48
49
- name: Test cli works in cached runtime image
@@ -65,5 +69,6 @@ jobs:
65
69
with:
66
70
67
71
push: true
72
68
73
tags: ${{ steps.meta.outputs.tags }}
74
labels: ${{ steps.meta.outputs.labels }}
0 commit comments