diff options
author | Jeff Armstrong <jeff@approximatrix.com> | 2020-04-09 18:16:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 18:16:09 -0400 |
commit | b6f30ccd0b657701c3e5fe6f1c4941c560ceb68b (patch) | |
tree | 0a0fffde6102519da72a83b185e083d0a1ffdd9d | |
parent | c0a6143f1237d5dbcccbcf20adda251fcdd470ed (diff) | |
download | gemworm-b6f30ccd0b657701c3e5fe6f1c4941c560ceb68b.zip gemworm-b6f30ccd0b657701c3e5fe6f1c4941c560ceb68b.tar.gz |
Build a binary when a release is created
-rw-r--r-- | .github/workflows/release.yml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..b54b387 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,42 @@ + +name: Build Binary Release + +on: + release: + types: + - created + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-18.04 + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - name: Install PPA + run: sudo add-apt-repository ppa:vriviere/ppa + + - name: Install MiNT Cross-tools + run: sudo apt-get install binutils-m68k-atari-mint gcc-m68k-atari-mint mintbin-m68k-atari-mint mintlib-m68k-atari-mint gemlib-m68k-atari-mint make zip + + - uses: actions/checkout@v2 + + - name: Build Worm + run: make -f makefile.gnu CC=m68k-atari-mint-gcc clean all + + - name: Build Worm Zip + run: zip -9 worm.zip worm.app wormst.rsc license.txt readme.txt + + - name: Upload Worm + id: upload-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ github.event.release.upload_url }} + asset_path: ./worm.zip + asset_name: worm.zip + asset_content_type: application/zip + |