29 lines
740 B
YAML
29 lines
740 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.40
|
|
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"
|
|
asset_name: "tianji-reporter-${{ matrix.goos }}-${{ matrix.goarch }}"
|