We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 580f676 + 51aa219 commit 26bdf3fCopy full SHA for 26bdf3f
.github/workflows/release-pr.yml
@@ -58,6 +58,7 @@ jobs:
58
59
git commit -m "prepare for next release (v${NEXT_VERSION})"
60
61
+ # Update go module dependencies
62
pushd ./pkg/test
63
go get -u "github.com/aaronfriel/go-change@v${VERSION}"
64
go mod tidy
@@ -66,7 +67,10 @@ jobs:
66
67
68
git commit -m "Update dependencies"
69
- git push -u origin HEAD --force
70
+ # Publish Go module on another tag
71
+ git tag "pkg/test/v${VERSION}"
72
+ git push origin "pkg/test/v${VERSION}"
73
+ git push -u origin HEAD
74
75
gh pr create \
76
--title "prepare for next release (v${NEXT_VERSION})" \
.version
@@ -1 +1 @@
1
-0.1.0-alpha.13
+0.1.0
0 commit comments