Skip to content

2.0.3

2.0.3 #3

Workflow file for this run

---
name: build
on:
release:
types:
- created
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos:
- freebsd
- linux
- darwin
goarch:
- '386'
- amd64
- arm64
exclude:
- goarch: '386'
goos: darwin
steps:
- uses: actions/checkout@v4
- name: set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Test
run: |
echo $RELEASE_VERSION
echo ${{ env.RELEASE_VERSION }}
- uses: actions/checkout@v4
- uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
binary_name: www
ldflags: -s -w -X main.version=${{ env.RELEASE_VERSION }}