holoiso/.github/workflows/build.yml
2022-05-28 20:21:39 +03:00

40 lines
730 B
YAML

name: Build ISO
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
container:
image: archlinux:latest
options: --privileged
steps:
- uses: actions/checkout@v2
- name: Prepare pacman keyring
run: |
pacman-key --init
pacman --noconfirm -Sy archlinux-keyring
- name: Install ArchISO
run: |
pacman -Sy
pacman --noconfirm -S git archiso
- name: Build ISO File
run: |
mkarchiso -v .
find out/
- uses: actions/upload-artifact@v2
with:
name: holoiso
path: out/*.iso