Browse Source

feat: 构建Windows32的二进制

eryajf 1 year ago
parent
commit
0e51170976
1 changed files with 3 additions and 1 deletions
  1. 3 1
      .github/workflows/go-binary-release.yml

+ 3 - 1
.github/workflows/go-binary-release.yml

@@ -10,8 +10,10 @@ jobs:
     strategy:
       matrix:
         goos: [linux, windows, darwin] # 需要打包的系统
-        goarch: [amd64, arm64] # 需要打包的架构
+        goarch: ["386", amd64, arm64] # 需要打包的架构
         exclude: # 排除某些平台和架构
+          - goarch: "386"
+            goos: darwin
           - goarch: arm64
             goos: windows
     steps: