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