File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
gradle/plugins/src/main/kotlin Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1717 run : ./gradlew --stacktrace -Psign=true -PjavaVersion=${{ needs.publish.outputs.java-version }} -Pversion=${{ github.ref_name }} :json-iterator:publish
1818 env :
1919 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
20- GPG_PUBLISH_PK : ${{ secrets.GPG_PUBLISH_PK }}
21- GPG_PUBLISH_PF : ${{ secrets.GPG_PUBLISH_PF }}
20+ GPG_PUBLISH_SECRET : ${{ secrets.GPG_PUBLISH_SECRET }}
21+ GPG_PUBLISH_PHRASE : ${{ secrets.GPG_PUBLISH_PHRASE }}
2222 MAVEN_CENTRAL_TOKEN : ${{ secrets.MAVEN_CENTRAL_TOKEN }}
2323 MAVEN_CENTRAL_SECRET : ${{ secrets.MAVEN_CENTRAL_SECRET }}
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ val gprUser =
1010val gprToken =
1111 providers.gradleProperty(" gpr.token.write" ).orElse(providers.environmentVariable(" GITHUB_TOKEN" )).orElse(" " )
1212val signingKey =
13- providers.environmentVariable(" GPG_PUBLISH_PK " ).orNull
13+ providers.environmentVariable(" GPG_PUBLISH_SECRET " ).orNull
1414val signingPassphrase =
15- providers.environmentVariable(" GPG_PUBLISH_PF " ).orNull
15+ providers.environmentVariable(" GPG_PUBLISH_PHRASE " ).orNull
1616val publishSigningEnabled =
1717 providers.gradleProperty(" sign" ).getOrElse(" false" ).toBoolean()
1818
You can’t perform that action at this time.
0 commit comments