Skip to content

Commit

Permalink
Create build-go-binary
Browse files Browse the repository at this point in the history
  • Loading branch information
CoderCore authored Sep 30, 2024
1 parent 8ec35c9 commit bb66574
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-go-binary
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build-go-binary

on:
release:
types: [created] # 表示在创建新的 Release 时触发

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/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }} # 一个默认的变量,用来实现往 Release 中添加文件
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.18 # 可以指定编译使用的 Golang 版本
binary_name: "chatgpt-dingtalk" # 可以指定二进制文件的名称
extra_files: README.md config.dev.json # 需要包含的额外文件

0 comments on commit bb66574

Please sign in to comment.