github.com/kaiya/goutils@v1.0.1-0.20230226104005-4ae4a4dc3688/.github/workflows/main.yml (about) 1 name: build 2 3 on: 4 release: 5 types: [created] # 表示在创建新的 Release 时触发 6 7 jobs: 8 build-go-binary: 9 runs-on: ubuntu-latest 10 strategy: 11 matrix: 12 goos: [linux, windows, darwin] # 需要打包的系统 13 goarch: [amd64, arm64] # 需要打包的架构 14 exclude: # 排除某些平台和架构 15 - goarch: arm64 16 goos: windows 17 steps: 18 - uses: actions/checkout@v3 19 - uses: wangyoucao577/go-release-action@v1.30 20 env: 21 GO111MODULE: off 22 with: 23 github_token: ${{ secrets.GITHUB_TOKEN }} # 一个默认的变量,用来实现往 Release 中添加文件 24 goos: ${{ matrix.goos }} 25 goarch: ${{ matrix.goarch }} 26 goversion: 1.18 # 可以指定编译使用的 Golang 版本 27 project_path: "./p2p/server" 28 binary_name: "p2pserver" # 可以指定二进制文件的名称 29 extra_files: LICENSE README.md # 需要包含的额外文件