From 1c4ca81b6e9fc271dfab78e0888248e58ec42ca8 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 1 Nov 2019 00:49:20 +0100 Subject: Added worflow for automatic releasing --- .github/workflows/ccpp.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ccpp.yml (limited to '.github') diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 0000000..faf06c9 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,26 @@ +name: Project build and nightly release + +on: + schedule: + - cron: "0 2 * * 0" + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Install + run: sudo apt-get update && sudo apt-get install -y build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libcloog-isl-dev libisl-dev curl nasm grub qemu qemu-kvm + - name: Make + run: make cross build + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: build/melvix.iso + name: Melvix Nightly Release + prerelease: 1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -- cgit v1.2.3