From 493a049624fc4820c3d1c326b2d47dbae23c814a Mon Sep 17 00:00:00 2001 From: Patrick Gaskin Date: Thu, 23 Apr 2020 12:01:26 -0400 Subject: [PATCH] Added GitHub Actions config --- .github/workflows/build.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..e957ba6 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,18 @@ +name: Build +on: [push] + +jobs: + build: + name: NickelMenu + runs-on: ubuntu-latest + container: docker.io/geek1011/kobo-toolchain:latest + steps: + - name: Checkout + uses: actions/checkout@v1 + - name: Build + run: make all koboroot + - name: Upload + uses: actions/upload-artifact@v1 + with: + name: NickelMenu + path: KoboRoot.tgz