summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorIrbe Krumina <irbekrm@gmail.com>2026-01-14 18:23:14 +0000
committerIrbe Krumina <irbekrm@gmail.com>2026-01-14 18:23:18 +0000
commitad00072da870b9952d597261fc805c6e3571f54b (patch)
tree5393005175d88526bfa08064de2c400f1708d750
parent28f163542cc089078b35a8dc1168c878223aadc5 (diff)
downloadtailscale-irbekrm/cigocacher_tmp.tar.xz
tailscale-irbekrm/cigocacher_tmp.zip
.github/actions/go-cache: put cigocacher bin in /tmp alwaysirbekrm/cigocacher_tmp
Updates tailscale/corp#32493 Signed-off-by: Irbe Krumina <irbekrm@gmail.com>
-rwxr-xr-x.github/actions/go-cache/action.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/go-cache/action.sh b/.github/actions/go-cache/action.sh
index f49d5bb77..9e43eb269 100755
--- a/.github/actions/go-cache/action.sh
+++ b/.github/actions/go-cache/action.sh
@@ -32,7 +32,7 @@ if [ -z "${GOPATH}" ]; then
GOPATH="./tool/go"
fi
-BIN_PATH="${RUNNER_TEMP:-/tmp}/cigocacher$(${GOPATH} env GOEXE)"
+BIN_PATH="/tmp/cigocacher$(${GOPATH} env GOEXE)"
if [ -d "cmd/cigocacher" ]; then
echo "cmd/cigocacher found locally, building from local source"
"${GOPATH}" build -o "${BIN_PATH}" ./cmd/cigocacher