Skip to content

Commit 9263fc0

Browse files
committed
feat: add arm64 platform support to Docker builds
Signed-off-by: suin <[email protected]>
1 parent a87ef0a commit 9263fc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
permissions:
99
contents: write
1010
jobs:
11-
webhook-init-image-amd64:
11+
webhook-init-image:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
@@ -46,12 +46,12 @@ jobs:
4646
uses: docker/build-push-action@v6
4747
with:
4848
context: .
49-
platforms: linux/amd64
49+
platforms: linux/amd64,linux/arm64
5050
push: ${{ github.event_name != 'pull_request' }}
5151
tags: ${{ steps.meta.outputs.tags }}
5252
labels: ${{ steps.meta.outputs.labels }}
5353

54-
webhook-server-image-amd64:
54+
webhook-server-image:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- name: Checkout
@@ -89,7 +89,7 @@ jobs:
8989
uses: docker/build-push-action@v6
9090
with:
9191
context: .
92-
platforms: linux/amd64
92+
platforms: linux/amd64,linux/arm64
9393
push: ${{ github.event_name != 'pull_request' }}
9494
tags: ${{ steps.meta.outputs.tags }}
9595
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)