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.
1 parent 5354b6a commit 71f84b2Copy full SHA for 71f84b2
readme.md
@@ -121,6 +121,5 @@ Done from github actions using [sbt-ci-release](https://github.com/olafurpg/sbt-
121
122
eg
123
```
124
-git tag -a v0.2.5 -m "v0.2.5"
125
-git push origin v0.2.5
+./release 'v0.2.5'
126
release.sh
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+version="$1"
4
5
+echo "step 1"
6
+git flow release start "$version"
7
+echo "step 2"
8
+git flow release finish -m '$version' "$version"
9
+echo "step 3"
10
+git checkout develop
0 commit comments