28 lines
660 B
YAML
28 lines
660 B
YAML
|
name: Build Reporter Release
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [created]
|
||
|
|
||
|
jobs:
|
||
|
build-go-binary:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
goos: [linux, windows, darwin]
|
||
|
goarch: [amd64, arm64]
|
||
|
exclude:
|
||
|
- goarch: arm64
|
||
|
goos: windows
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- uses: wangyoucao577/go-release-action@v1.30
|
||
|
with:
|
||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||
|
project_path: ./reporter
|
||
|
goos: ${{ matrix.goos }}
|
||
|
goarch: ${{ matrix.goarch }}
|
||
|
goversion: 1.21.1
|
||
|
binary_name: "tianji-reporter"
|
||
|
compress_assets: "OFF"
|