From 92bb0097cd017be5e9ab683e6842c022e38a3a6d Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Sun, 6 Jul 2025 18:38:47 +0800 Subject: [PATCH] =?UTF-8?q?ci(workflow):=E6=B7=BB=E5=8A=A0windows/arm64?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E7=9A=84=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 GitHub Actions 工作流中增加了 windows/arm64 平台的构建任务 - 新增 go-stock-windows-arm64.exe 可执行文件的生成 - 设置了针对 arm64 架构的构建参数 --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c0f34e3..1b53454 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,6 +21,10 @@ jobs: - name: 'go-stock-windows-amd64.exe' platform: 'windows/amd64' os: 'windows-latest' + - name: 'go-stock-windows-arm64.exe' + platform: 'windows/arm64' + os: 'windows-latest' + arch: arm64 # - name: 'go-stock-linux-amd64' # platform: 'linux/amd64' # os: 'ubuntu-latest'