Skip to content

Commit

Permalink
Version name correction
Browse files Browse the repository at this point in the history
  • Loading branch information
Javernaut committed Aug 23, 2021
1 parent 52f01b5 commit 209824e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 40 deletions.
38 changes: 0 additions & 38 deletions .github/workflows/publish.yml

This file was deleted.

4 changes: 2 additions & 2 deletions scripts/publish-root.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if (secretPropsFile.exists()) {
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
ext["sonatypeStagingProfileId"] = System.getenv('SONATYPE_STAGING_PROFILE_ID')
ext["versionSuffix"] = System.getenv('VERSION_SUFFIX')
ext["versionSuffix"] = System.getenv('VERSION_SUFFIX') ?: ''
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')
ext["signing.key"] = System.getenv('SIGNING_KEY')
Expand All @@ -39,5 +39,5 @@ nexusPublishing {

ext {
PUBLISH_GROUP_ID = 'io.github.javernaut'
PUBLISH_VERSION = '1.0.0' + versionSuffix
PUBLISH_VERSION = '1.0.1' + versionSuffix
}

0 comments on commit 209824e

Please sign in to comment.