Skip to content

v0.12.0

v0.12.0 #18

Workflow file for this run

name: Release
on:
release:
types: [published]
permissions:
contents: write
packages: write
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux, windows, darwin]
goarch: ["386", amd64, arm64]
exclude:
- goarch: "386"
goos: darwin
- goarch: arm64
goos: windows
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: wangyoucao577/go-release-action@v1
env:
BUILD_FOLDER: .
with:
build_command: make build
extra_files: LICENSE README.md
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "1.22"
md5sum: false