We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b2398 commit 9a2138aCopy full SHA for 9a2138a
.github/workflows/main.yml
@@ -13,10 +13,18 @@ jobs:
13
strategy:
14
fail-fast: false
15
matrix:
16
- ARCH: [x86_64, i386, aarch64, armhf]
+ include:
17
+ - ARCH: x86_64
18
+ RUNS_ON: ubuntu-latest
19
+ - ARCH: i386
20
21
+ - ARCH: aarch64
22
+ RUNS_ON: ubuntu-latest-arm
23
+ - ARCH: armhf
24
25
26
name: AppImage ${{ matrix.ARCH }}
- runs-on: ubuntu-20.04
27
+ runs-on: ${{ matrix.RUNS_ON }}
28
env:
29
ARCH: ${{ matrix.ARCH }}
30
APPIMAGE_EXTRACT_AND_RUN: 1
0 commit comments