Create build.yml

malloc
Elias Almqvist 3 years ago committed by GitHub
parent 11a5c4d9eb
commit 2b7e378d7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      .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
Loading…
Cancel
Save