Browse Source

fix: 二进制构建忽略Windows32

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

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

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