We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3951371 commit e593871Copy full SHA for e593871
.github/workflows/release.yml
@@ -38,4 +38,4 @@ jobs:
38
arguments: publish -PossrhUsername=${{ secrets.OSSRH_USERNAME }} -PossrhPassword=${{ secrets.OSSRH_PASSWORD }}
39
env:
40
release: 1
41
- REPOSITORY_URL: https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/
+ REPOSITORY_URL: https://s01.oss.sonatype.org/service/local/
lib/build.gradle
@@ -78,7 +78,7 @@ jar.archiveBaseName = 'openfeature'
78
def repo_url = System.getenv("REPOSITORY_URL")
79
80
group = 'dev.openfeature'
81
-version = '0.0.1' + (Boolean.valueOf(System.getProperty("release")) ? "" : "-SNAPSHOT")
+version = '0.0.1' + (Boolean.valueOf(System.getenv("release")) ? "" : "-SNAPSHOT")
82
83
publishing {
84
publications {
0 commit comments