Merge pull request #21 from regolith-linux/gh-action
Basic GitHub workflow to generate ISO
This commit is contained in:
commit
697c0688a1
|
|
@ -0,0 +1,24 @@
|
|||
name: build-focal
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Initiate Build
|
||||
run: |
|
||||
cd scripts
|
||||
./build.sh -
|
||||
|
||||
- name: Debug
|
||||
run: |
|
||||
ls -hl scripts/
|
||||
Loading…
Reference in New Issue