Make bootable image with text-mode installer #352
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@v3 | |
with: | |
submodules: true | |
- name: Install build dependencies | |
run: | | |
sudo apt install -y make squashfs-tools dosfstools mtools | |
sudo snap refresh --edge snapd | |
sudo snap install --classic ubuntu-image | |
- name: Build image | |
run: | | |
make | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: image | |
path: | | |
README.md | |
*.tar.gz |