We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 85cdd0d + d98a4fc commit 1286ca7Copy full SHA for 1286ca7
.github/workflows/container-tap-ghcr.yaml
@@ -1,8 +1,6 @@
1
name: container-tap-ghcr
2
on:
3
push:
4
- branches:
5
- - main
6
tags:
7
- 'tap-v*'
8
env:
@@ -23,6 +21,11 @@ jobs:
23
21
- name: Checkout repository
24
22
uses: actions/checkout@v3
25
+ - name: Set up QEMU
+ uses: docker/setup-qemu-action@v3
26
+ with:
27
+ platforms: all
28
+
29
- name: Setup Docker buildx
30
uses: docker/setup-buildx-action@v1
31
@@ -49,6 +52,9 @@ jobs:
49
52
id: build-and-push
50
53
uses: docker/build-push-action@v4
51
54
with:
55
+ platforms: |
56
+ linux/amd64
57
+ linux/arm64
58
context: .
59
file: ./cmd/tap/Dockerfile
60
push: ${{ github.event_name != 'pull_request' }}
0 commit comments