Skip to content

Commit 2fc6ecb

Browse files
authored
fix
1 parent 8ae6812 commit 2fc6ecb

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,21 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
strategy:
1818
matrix:
19-
arch: [x86_64, aarch64]
19+
include:
20+
- arch: x86_64
21+
platform: linux/amd64
22+
- arch: aarch64
23+
platform: linux/arm64
2024
container:
2125
image: ubuntu:24.04
22-
options: "--privileged --cap-add SYS_ADMIN --device /dev/fuse"
26+
options: "--platform ${{ matrix.platform }} --privileged --cap-add SYS_ADMIN --device /dev/fuse"
2327
steps:
24-
- name: Set up QEMU
25-
uses: docker/setup-qemu-action@v3
26-
continue-on-error: true
2728
- name: Set up Docker Buildx
2829
uses: docker/setup-buildx-action@v3
2930
continue-on-error: true
31+
- name: Set up QEMU
32+
uses: docker/setup-qemu-action@v3
33+
continue-on-error: true
3034
- name: Checkout ghostty-appimage
3135
uses: actions/checkout@v4
3236
with:

0 commit comments

Comments
 (0)