easy-arch/.github/workflows/ci.yml
2021-05-09 10:28:13 +02:00

34 lines
966 B
YAML

name: ISO pipeline
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
name: Building ISO.
runs-on: ubuntu-latest
container:
image: archlinux:latest
options: --privileged
steps:
- uses: actions/checkout@v2
- name: Creating workspace.
- run: mkdir -p /tmp/archlive/airootfs/root/
- name: Copying easy-arch in the workspace.
- run: cp easy-arch.sh /tmp/archlive/airootfs/root/
- name: Updating container.
- run: pacman -Sy
- name: Installing needed tools.
- run: pacman --noconfirm -S git archiso
- name: Copying profile inside the workspace.
- run: cp -r /usr/share/archiso/configs/releng/* /tmp/archlive
- name: Creating the ISO.
- run: mkarchiso -v -w /tmp/archlive/work/ -o /tmp/archlive/out /tmp/archlive
- uses: actions/upload-artifact@v2
with:
name: Arch ISO.
path: /tmp/archlive/out/*.iso