diff options
-rw-r--r-- | .github/workflows/ccpp.yml | 26 |
1 files changed, 26 insertions, 0 deletions
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 }} |