From 15d15f25018221626db2c3c65401ae709bb6402c Mon Sep 17 00:00:00 2001 From: Drake <53356436+Ruthenic@users.noreply.github.com> Date: Mon, 19 Jul 2021 23:15:00 -0400 Subject: [PATCH] Create release action --- .github/workflows/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..71b66a2 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,26 @@ +name: Build Release + +on: + push: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: make + run: make + - name: Create Archive + uses: thedoctor0/zip-release@master + with: + filename: release.tar.gz + type: tar + path: bin + - name: Upload Artifacts + uses: actions/upload-artifact@v2 + with: + name: release + path: release.tar.gz