Skip to content

Commit

Permalink
Merge pull request #9 from arran4/master
Browse files Browse the repository at this point in the history
Created a github action to build and release it
  • Loading branch information
singpolyma authored Feb 14, 2023
2 parents 8b9231f + 7962435 commit 315aed6
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: releaser

on:
push:
tags:
- '*.*.*'

jobs:
ubuntubuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build
run: |
sudo apt-get install -y build-essential gcc mingw-w64-tools zip gzip tar g++-mingw-w64-x86-64
make
tar czf linux-amd64.tar.gz mnencode mndecode
- name: Upload release binaries
uses: alexellis/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
asset_paths: '["linux-amd64.tar.gz"]'

0 comments on commit 315aed6

Please sign in to comment.