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 a8b6920 commit 8133745Copy full SHA for 8133745
1 file changed
.github/workflows/orchid.yml
@@ -5,7 +5,15 @@ on:
5
6
jobs:
7
build:
8
- runs-on: ubuntu-latest
+ strategy:
9
+ fail-fast: false
10
+ matrix:
11
+ include:
12
+ - runner: ubuntu-latest
13
+ arch: AMD64
14
+ - runner: ubuntu-24.04-arm
15
+ arch: ARM64
16
+ runs-on: ${{ matrix.runner }}
17
container:
18
image: ghcr.io/vanilla-os/pico:main
19
volumes:
@@ -27,5 +35,5 @@ jobs:
27
35
28
36
- uses: actions/upload-artifact@v4
29
37
with:
30
- name: VanillaOS 2 Orchid ${{ env.CURRENT_DATE }}
38
+ name: VanillaOS 2 Orchid ${{ matrix.arch }} ${{ env.CURRENT_DATE }}
31
39
path: builds/
0 commit comments