File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ The Gradle release task creates a release commit and push it to the origin/maste
77```
88$ git checkout master
99$ git pull
10- $ ./gradlew release -Prelease.releaseVersion=2.43.1
10+ $ ./gradlew release -Prelease.releaseVersion=$(gh release list -L 1 | tee /dev/tty | awk '{print $1}')
1111```
1212
1313The value of ` release.releaseVersion ` is decided by the draft name of
@@ -28,7 +28,7 @@ The workflow builds artifacts and publishes them to [Maven Central](https://repo
2828Use [ Dependency Watch] ( https://github.com/JakeWharton/dependency-watch ) .
2929
3030```
31- $ dependency-watch await org.seasar.doma:doma-core:2.43.1 && say "New version is available!"
31+ $ dependency-watch await org.seasar.doma:doma-core:$(gh release list -L 1 | tee /dev/tty | awk '{print $1}') && say "New version is available!"
3232```
3333
3434If the above command is successful, the following directories will contain the new artifacts:
You can’t perform that action at this time.
0 commit comments