From 0854bdb141364b40b76d59ce1dd129a0509ccbfc Mon Sep 17 00:00:00 2001 From: Johnshall Date: Sat, 2 Apr 2022 01:17:59 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=80=20=E5=AE=9A=E4=BD=8D=E6=AD=A3?= =?UTF-8?q?=E7=A1=AE=E7=9A=84=E6=96=87=E4=BB=B6=E5=A4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab4170d..352da06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -145,18 +145,18 @@ jobs: - name: Build verysimple run: | mkdir -p build_assets - go build -tags $(tags) -v -o build_assets/verysimple -trimpath -ldflags "-s -w -buildid=" ./main + go build -tags $(tags) -v -o build_assets/verysimple -trimpath -ldflags "-s -w -buildid=" # 在 Windows 中加入无窗口运行的 Wverysimple.exe - name: Build background verysimple on Windows if: matrix.goos == 'windows' run: | - go build -tags $(tags) -v -o build_assets/Wverysimple.exe -trimpath -ldflags "-s -w -H windowsgui -buildid=" ./main + go build -tags $(tags) -v -o build_assets/Wverysimple.exe -trimpath -ldflags "-s -w -H windowsgui -buildid=" - name: Build Mips softfloat verysimple if: matrix.goarch == 'mips' || matrix.goarch == 'mipsle' run: | - GOMIPS=softfloat go build -tags $(tags) -v -o build_assets/verysimple_softfloat -trimpath -ldflags "-s -w -buildid=" ./main + GOMIPS=softfloat go build -tags $(tags) -v -o build_assets/verysimple_softfloat -trimpath -ldflags "-s -w -buildid=" - name: Rename Windows verysimple if: matrix.goos == 'windows'