Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
Fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
yschimke committed Dec 27, 2021
1 parent 0194ac0 commit 84e394c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Expand Up @@ -239,10 +239,10 @@ task("tagRelease") {
doLast {
val tagName = versioning.info.nextVersion() ?: throw IllegalStateException("unable to compute tag name")
exec {
commandLine("echo", "git", "tag", tagName)
commandLine("git", "tag", tagName)
}
exec {
commandLine("echo", "git", "push", "origin", "refs/tags/$tagName")
commandLine("git", "push", "origin", "refs/tags/$tagName")
}
}
}
Expand Down

0 comments on commit 84e394c

Please sign in to comment.