We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55137e2 commit 6a37819Copy full SHA for 6a37819
1 file changed
.github/workflows/pkg.go.dev.yml
@@ -0,0 +1,16 @@
1
+name: Update pkg.go.dev
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - 'v*'
7
8
+jobs:
9
+ update-pkg-go-dev:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ # see https://pkg.go.dev/about#adding-a-package
13
+ - name: Update pkg.go.dev
14
+ run: |
15
+ ESCAPED_MODULE=$(echo $GITHUB_REPOSITORY | tr '[:upper:]' '[:lower:]')
16
+ curl https://proxy.golang.org/github.com/$ESCAPED_MODULE/@v/$GITHUB_REF_NAME.info
0 commit comments