Skip to content

Commit d2d7257

Browse files
authored
Merge pull request #6 from scalacenter/contributing
contributing
2 parents 9c7271d + bffeb15 commit d2d7257

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)