File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 - Signs each jar with GPG
4444 - Generates SHA256 checksums
45459 . Commits release on release branch
46- 10 . Creates annotated tag: ` v {VERSION}`
46+ 10 . Creates annotated tag: ` {VERSION} `
474711 . Pushes release branch and tag to remote
484812 . Switches back to main branch
494913 . Sets post-release version: ` {VERSION}-POST `
Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ check_git_state() {
181181check_no_existing_release () {
182182 local ver=" $1 "
183183 local release_branch=" release-${ver} "
184- local tag_name=" v ${ver} "
184+ local tag_name=" ${ver} "
185185
186186 log_info " Checking for existing release"
187187
@@ -306,7 +306,7 @@ commit_release() {
306306
307307tag_release () {
308308 local ver=" $1 "
309- local tag_name=" v ${ver} "
309+ local tag_name=" ${ver} "
310310
311311 log_info " Creating git tag"
312312
@@ -318,7 +318,7 @@ tag_release() {
318318push_release () {
319319 local ver=" $1 "
320320 local release_branch=" release-${ver} "
321- local tag_name=" v ${ver} "
321+ local tag_name=" ${ver} "
322322
323323 log_info " Pushing release to remote"
324324
@@ -408,7 +408,7 @@ main() {
408408 log_info " This will:"
409409 log_info " - Create branch: release-${version} "
410410 log_info " - Build and deploy to Maven Central"
411- log_info " - Create git tag: v ${version} "
411+ log_info " - Create git tag: ${version} "
412412 log_info " - Push to remote: ${git_remote} "
413413 log_info " - Sign artifacts with GPG key: ${gpg_key_id:- default} "
414414 echo " "
You can’t perform that action at this time.
0 commit comments