mirror of
https://github.com/bhaiest/holoiso.git
synced 2024-11-15 07:42:48 +01:00
40 lines
730 B
YAML
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
|