From 4001fb9c524cbb6090c48a2580ae905f5c2aadbd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 04:48:53 +0000 Subject: [PATCH 1/2] Initial plan From f1d16c0930d86e34b6efed4654b57bc18160c26a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 04:51:32 +0000 Subject: [PATCH 2/2] Fix pkg.go.dev refresh step in publish workflow Co-authored-by: rapidclock <19704351+rapidclock@users.noreply.github.com> --- .github/workflows/publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0983dbe..7106624 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -80,12 +80,11 @@ jobs: run: | set -euo pipefail VERSION="${{ github.event.release.tag_name }}" - URL="https://pkg.go.dev/fetch/${MODULE}@${VERSION}" + URL="https://pkg.go.dev/${MODULE}@${VERSION}" for i in 1 2 3 4 5; do if curl -fsSL "$URL" >/dev/null; then exit 0 fi sleep $((i * 2)) done - echo "failed to trigger pkg.go.dev refresh after retries" - exit 1 + echo "::warning::pkg.go.dev did not return success after retries; indexing may still be in progress"