Skip to content

Commit

Permalink
Merge pull request #64 from appthrust/arm-support
Browse files Browse the repository at this point in the history
Add arm64 platform support to Docker builds
  • Loading branch information
zong-zhe authored Dec 10, 2024
2 parents 591fb4c + 9263fc0 commit fdefa01
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 fdefa01

Please sign in to comment.