Skip to content

Commit 209824e

Browse files
committed
Version name correction
1 parent 52f01b5 commit 209824e

File tree

2 files changed

+2
-40
lines changed

2 files changed

+2
-40
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

scripts/publish-root.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if (secretPropsFile.exists()) {
1818
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
1919
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
2020
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
21-
ext["versionSuffix"] = System.getenv('VERSION_SUFFIX')
21+
ext["versionSuffix"] = System.getenv('VERSION_SUFFIX') ?: ''
2222
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
2323
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')
2424
ext["signing.key"] = System.getenv('SIGNING_KEY')
@@ -39,5 +39,5 @@ nexusPublishing {
3939

4040
ext {
4141
PUBLISH_GROUP_ID = 'io.github.javernaut'
42-
PUBLISH_VERSION = '1.0.0' + versionSuffix
42+
PUBLISH_VERSION = '1.0.1' + versionSuffix
4343
}

0 commit comments

Comments
 (0)