Skip to content

Commit

Permalink
feat: add arm64 platform support to Docker builds
Browse files Browse the repository at this point in the history
Signed-off-by: suin <[email protected]>
  • Loading branch information
suin committed Dec 10, 2024
1 parent a87ef0a commit 9263fc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
permissions:
contents: write
jobs:
webhook-init-image-amd64:
webhook-init-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -46,12 +46,12 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

webhook-server-image-amd64:
webhook-server-image:
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 9263fc0

Please sign in to comment.