Skip to content

Commit 1286ca7

Browse files
authored
add arm64 to tap docker build (#1324)
Need to kick off the CI to test this, I *think* this is all that's needed
2 parents 85cdd0d + d98a4fc commit 1286ca7

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/container-tap-ghcr.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: container-tap-ghcr
22
on:
33
push:
4-
branches:
5-
- main
64
tags:
75
- 'tap-v*'
86
env:
@@ -23,6 +21,11 @@ jobs:
2321
- name: Checkout repository
2422
uses: actions/checkout@v3
2523

24+
- name: Set up QEMU
25+
uses: docker/setup-qemu-action@v3
26+
with:
27+
platforms: all
28+
2629
- name: Setup Docker buildx
2730
uses: docker/setup-buildx-action@v1
2831

@@ -49,6 +52,9 @@ jobs:
4952
id: build-and-push
5053
uses: docker/build-push-action@v4
5154
with:
55+
platforms: |
56+
linux/amd64
57+
linux/arm64
5258
context: .
5359
file: ./cmd/tap/Dockerfile
5460
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)