From 33147c4591f43503baf56a3ed6ade31472a5e679 Mon Sep 17 00:00:00 2001 From: Will Norris Date: Thu, 16 Nov 2023 09:38:24 -0800 Subject: [PATCH] .github: build gocross using regular GOPROXY settings This `go get` action has been running very slowly, and I'm pretty sure it's because we're building gocross on the first `./tool/go` run, and because we've set `GOPROXY=direct`, it's going directly to GitHub to fetch all of the gocross dependencies. Updates #cleanup Signed-off-by: Will Norris --- .github/workflows/update-webclient-prebuilt.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-webclient-prebuilt.yml b/.github/workflows/update-webclient-prebuilt.yml index 814bc4a2e..514b39df6 100644 --- a/.github/workflows/update-webclient-prebuilt.yml +++ b/.github/workflows/update-webclient-prebuilt.yml @@ -18,6 +18,7 @@ jobs: - name: Run go get run: | + ./tool/go version # build gocross if needed using regular GOPROXY GOPROXY=direct ./tool/go get github.com/tailscale/web-client-prebuilt ./tool/go mod tidy