We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4840bcf commit 07dde94Copy full SHA for 07dde94
.github/workflows/make-release.yaml
@@ -34,6 +34,7 @@ jobs:
34
git config user.name ${{ github.actor }}
35
git tag -a v${{ github.event.inputs.version }} -m "Version ${{ github.event.inputs.version }}"
36
git push origin v${{ github.event.inputs.version }}
37
+
38
- name: Create a github release
39
uses: actions/create-release@v1
40
env:
@@ -45,3 +46,11 @@ jobs:
45
46
Changes in this Release:
47
draft: false
48
prerelease: false
49
50
+ - name: Set up Go
51
+ uses: actions/setup-go@v3
52
+ with:
53
+ go-version: 1.17
54
55
+ - name: Publish on pkg.go.dev
56
+ run: GOPROXY=proxy.golang.org go list -m github.com/np-guard/cluster-topology-analyzer@v${{ github.event.inputs.version }}
0 commit comments