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 9c7271d + bffeb15 commit d2d7257Copy full SHA for d2d7257
CONTRIBUTING.md
@@ -0,0 +1,10 @@
1
+#Release
2
+We use sbt-ci-release.
3
+First, kickstart a CI release to Sonatype by pushing a git tag that correspond to the desired commit
4
+
5
+```bash
6
+git fetch && git log origin/main --pretty=oneline # choose the commit hash you want to tag
7
+COMMIT_HASH=14a069a3765739f5540129e8220104b17f233020 # change this variable
8
+VERSION=0.9.15 # change this variable
9
+git tag -af "v$VERSION" $COMMIT_HASH -m "v$VERSION" && git push -f origin v$VERSION
10
+```
0 commit comments