Skip to content

Commit

Permalink
add github action for release
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronjanse committed May 25, 2020
1 parent 478cdf2 commit 085e792
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
release:
types: [created]

jobs:
releases-linux:
name: Release Linux Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux ]
goarch: [ amd64, arm64 ]
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@03b2ba5e80391d00d2939789911b63d63ee965ea
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
project_path: "./."
binary_name: "3mux"

0 comments on commit 085e792

Please sign in to comment.