Skip to content

update se

update se #13

Workflow file for this run

name: Pre-release
on:
push:
branches:
- main
- master
# release:
# types: [created]
permissions:
contents: write
packages: write
jobs:
releases-matrix:
name: Release Go Binary (pre-release, for testing purposes)
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64
goos: [linux, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
# goversion: '1.24.2'
binary_name: 'hey'
# extra_files: LICENSE README.md
release_tag: 'latest'
md5sum: false
overwrite: true