From ef15ddf79e489dc1bf98681fd6efde6d7bfcf4da Mon Sep 17 00:00:00 2001 From: ipfreely-uk Date: Sun, 21 Apr 2024 17:06:48 +0100 Subject: [PATCH] CI fix --- .github/workflows/document.yml | 4 +++- go.mod | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index ea510db..1ee3c04 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -12,4 +12,6 @@ jobs: runs-on: ubuntu-latest steps: - name: pkgsite - run: curl https://proxy.golang.org/github.com/ipfreely-uk/go/@v/${{ github.ref_name }}.info + # prompts pkgsite to scan repo for new tag + # curl will always return error code because 404 + run: curl https://proxy.golang.org/github.com/ipfreely-uk/go/@v/${{ github.ref_name }}.info || true diff --git a/go.mod b/go.mod index 41f3b9e..15e67d0 100644 --- a/go.mod +++ b/go.mod @@ -13,3 +13,7 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) + +retract ( + [v0.0.0-alpha, v0.0.5-alpha] // old alpha builds +)