Skip to content

Commit

Permalink
Adding release binary builder
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuebert committed Jun 9, 2021
1 parent 6e7f788 commit 2288d1f
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 binaries

on:
release:
types: [created]

jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# - name: Run tests
# run: go test -v -p=1 -timeout=0 ./...
- uses: wangyoucao577/go-release-action@v1.16
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: linux
goarch: arm
goarm: 6
project_path: "."
binary_name: "levely"
ldflags: "-s -w"
extra_files: LICENSE README.md

0 comments on commit 2288d1f

Please sign in to comment.