25 lines
438 B
YAML
25 lines
438 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
BuildISO:
|
|
name: BuildISO
|
|
runs-on: ubuntu-18.04
|
|
steps:
|
|
- run: git clone https://gitlab.archlinux.org/archlinux/archiso.git
|
|
|
|
- run: cd archiso
|
|
|
|
- run: make install
|
|
|
|
- run: git clone https://github.com/logzinga/elnathco.git
|
|
|
|
- run: cp elnathco/isoprofile ~/iso
|
|
|
|
- run: mkarchiso -v -w /tmp -o ~/out ~/iso/isoprofile
|
|
|
|
|
|
|