From 2b7e378d7d25a9478bf7e2588b1ce94365ae0590 Mon Sep 17 00:00:00 2001 From: Elias Almqvist Date: Fri, 17 Sep 2021 13:47:15 +0200 Subject: [PATCH] Create build.yml --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..8832223 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Create ISO & Upload + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Create ISO + run: make + + - name: Upload ISO + uses: actions/upload-artifact@v2.2.4 + with: + name: eos.iso + path: eos.iso