Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/curvy-roses-suffer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
'@powersync/diagnostics-app': patch
---

Include arm64 builds in Docker image.

Closes https://github.com/powersync-ja/powersync-js/issues/780.
4 changes: 3 additions & 1 deletion .github/workflows/diagnostics-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

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

- name: Build Image
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
platforms: linux/arm64,linux/amd64
cache-from: type=registry,ref=${{vars.DIAGNOSTICS_DOCKER_REGISTRY}}:latest
context: .
file: ./tools/diagnostics-app/Dockerfile
4 changes: 3 additions & 1 deletion .github/workflows/diagnostics-image-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

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

Expand All @@ -36,7 +38,7 @@ jobs:
- name: Build Image and Push
uses: docker/build-push-action@v5
with:
platforms: linux/amd64
platforms: linux/arm64,linux/amd64
cache-from: type=registry,ref=${{vars.DIAGNOSTICS_DOCKER_REGISTRY}}:latest
context: .
tags: ${{vars.DIAGNOSTICS_DOCKER_REGISTRY}}:latest,${{vars.DIAGNOSTICS_DOCKER_REGISTRY}}:${{steps.get_version.outputs.IMAGE_VERSION}}
Expand Down
Loading