File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 ORG_GRADLE_PROJECT_signingPassword : " ${{ secrets.SIGNING_PASSWORD }}"
2424 ORG_GRADLE_PROJECT_sonatypeUsername : " ${{ secrets.SONATYPE_USERNAME }}"
2525 ORG_GRADLE_PROJECT_sonatypePassword : " ${{ secrets.SONATYPE_PASSWORD }}"
26- run : " ORG_GRADLE_PROJECT_release=${GITHUB_REF#ref/tags/} ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository"
26+ run : |
27+ export ORG_GRADLE_PROJECT_release=${GITHUB_REF#ref/tags/}
28+ echo $ORG_GRADLE_PROJECT_release
29+ ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository"
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ repositories {
1515}
1616
1717group = " com.authzed.api"
18- version = project . hasProperty( " release " ) ? findProperty(" release" ) : " 0.0.0-SNAPSHOT"
18+ version = findProperty(" release" ) ? : " 0.0.0-SNAPSHOT"
1919
2020nexusPublishing { repositories { sonatype {
2121 // If registered in Sonatype after 24 Feb 2021, you must explicitly configure these:
You can’t perform that action at this time.
0 commit comments