Ported the bootable image creation to 24 #355
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build-image | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install build dependencies | |
run: | | |
sudo apt install -y make squashfs-tools dosfstools mtools xorriso | |
sudo snap refresh --edge snapd | |
sudo snap install --classic ubuntu-image | |
- name: Build image | |
run: | | |
make | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: image | |
path: | | |
README.md | |
*.iso | |
*.img.xz | |
compression-level: 0 |