File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 55
66jobs :
77 build :
8- runs-on : ubuntu-latest
8+ 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 }}
917 container :
1018 image : ghcr.io/vanilla-os/pico:main
1119 volumes :
2735
2836 - uses : actions/upload-artifact@v4
2937 with :
30- name : VanillaOS 2 Orchid ${{ env.CURRENT_DATE }}
38+ name : VanillaOS 2 Orchid ${{ matrix.arch }} ${{ env.CURRENT_DATE }}
3139 path : builds/
Original file line number Diff line number Diff line change 11#! /bin/sh
22# Description: Install vanilla-installer from source
33
4- wget https://github.com/Vanilla-OS/Albius/releases/download/continuous/albius.deb
5- apt-get install -y ./albius.deb
6- rm albius.deb
4+ wget https://github.com/Vanilla-OS/Albius/releases/download/continuous/albius- $( dpkg --print-architecture ) .deb
5+ apt-get install -y ./albius* .deb
6+ rm albius* .deb
77
88wget https://github.com/Vanilla-OS/vanilla-installer/releases/download/continuous/vanilla-installer.deb
99apt-get install -y ./vanilla-installer.deb
You can’t perform that action at this time.
0 commit comments