From 0fd29f32409856a6f554db04466760dbb7416e7e Mon Sep 17 00:00:00 2001 From: "log :3" <65839350+logzinga@users.noreply.github.com> Date: Thu, 17 Nov 2022 18:39:56 +1100 Subject: [PATCH] Create main.yml mainly experimenting dont mind this --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..39f6f71 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +on: + push: + branches: + - main + +jobs: + BuildISO: + name: BuildISO + runs-on: ubuntu-18.04 + steps: + - name: Install Dependencies + run: git clone https://gitlab.archlinux.org/archlinux/archiso.git \ cd archiso \ make install + - name: ISO Profile + run: git clone https://github.com/logzinga/elnathco.git \ cp elnathco/isoprofile ~/iso + - name: Build ISO + run: mkarchiso -v -w /tmp -o ~/out ~/iso/isoprofile + + +