Skip to content

v1.8.0

v1.8.0 #37

Workflow file for this run

on:
release:
types: [created, published]
workflow_dispatch:
name: Release
jobs:
linux:
name: Release linux/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: release linux/amd64
uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.github_token }}
goarch: amd64
goos: linux
ldflags: "-s -w"
windows:
name: Release windows/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: release windows/amd64
uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.github_token }}
goarch: amd64
goos: windows
ldflags: "-s -w"
darwin:
name: Release darwin/amd64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: release darwin/amd64
uses: wangyoucao577/[email protected]
with:
github_token: ${{ secrets.github_token }}
goarch: amd64
goos: darwin
ldflags: "-s -w"