Skip to content

Workflow file for this run

on:
release:
types: [created]
jobs:
release:
name: release
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, windows/386, windows/amd64, darwin/386, darwin/amd64
goos:
- darwin
- linux
# - windows
goarch:
- amd64
- arm64
# - arm
# - "386"
steps:
- uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.37
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goversion: https://golang.org/dl/go1.20.2.linux-amd64.tar.gz
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}