Skip to content

Commit

Permalink
Create release Github Actions workflow (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddhartha Bagaria authored Apr 6, 2021
1 parent e7d495b commit b5415cb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
release:
types: [created]

jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, darwin]
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goversion: "1.13"

0 comments on commit b5415cb

Please sign in to comment.