Force Go module mode in Gitea workflow
Some checks failed
build-windows-exe / build (push) Failing after 52s

This commit is contained in:
every_holiday
2026-06-24 01:00:42 +09:00
parent a4394bfde6
commit b34c2fafb4

View File

@@ -24,15 +24,15 @@ jobs:
shell: bash
run: |
cd VRWT_Tool/VRC_OSC
go test ./...
GO111MODULE=on go test ./...
- name: Build executables
shell: bash
run: |
cd VRWT_Tool/VRC_OSC
mkdir -p dist
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o dist/vrc_osc.exe ./cmd/vrc_osc
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o dist/vrwt_tool.exe ./cmd/vrwt_tool
GO111MODULE=on GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o dist/vrc_osc.exe ./cmd/vrc_osc
GO111MODULE=on GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o dist/vrwt_tool.exe ./cmd/vrwt_tool
- name: Package executables
shell: bash