Skip to content

Commit

Permalink
feat(docker): add support for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Dec 8, 2023
1 parent fef53c6 commit 0ed9c01
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/packages-scheduled-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
- name: checkout
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: GHCR Login
uses: docker/login-action@v3
with:
Expand All @@ -48,3 +54,4 @@ jobs:
push: true
tags: ${{ steps.image-tag.outputs.image_url }}
file: ${{ steps.image-tag.outputs.file }}
platforms: linux/amd64,linux/arm64
7 changes: 7 additions & 0 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ jobs:
- name: checkout
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: GHCR Login
uses: docker/login-action@v3
with:
Expand All @@ -62,3 +68,4 @@ jobs:
push: true
tags: ${{ steps.image-tag.outputs.image_url }}
file: ${{ steps.image-tag.outputs.file }}
platforms: linux/amd64,linux/arm64

0 comments on commit 0ed9c01

Please sign in to comment.