File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 echo -e "${{ secrets.SECRING }}" | base64 -d > ./secring.gpg
2525 echo "$(ls -la)"
2626 touch ./gradle.properties
27- echo "signing.keyId =${{ secrets.KEYID }}" >> ./gradle.properties
28- echo "signing.password =${{ secrets.PASS }}" >> ./gradle.properties
27+ echo "signingKeyId =${{ secrets.KEYID }}" >> ./gradle.properties
28+ echo "signingPassword =${{ secrets.PASS }}" >> ./gradle.properties
2929 echo "signing.secretKeyRingFile=$(pwd)/secring.gpg" >> ./gradle.properties
3030 echo "sonatypeUsername=${{ secrets.SUSER }}" >> ./gradle.properties
3131 echo "sonatypePassword=${{ secrets.SPASSWORD }}" >> ./gradle.properties
Original file line number Diff line number Diff line change @@ -176,8 +176,8 @@ publishing {
176176
177177signing {
178178 required { gradle. taskGraph. hasTask(" publish" ) }
179- def signingKey = " ${ signing.keyId } "
180- def signingPassword = " ${ signing.password } "
179+ def signingKey = " ${ signingKeyId } "
180+ def signingPassword = " ${ signingPassword } "
181181 useInMemoryPgpKeys(signingKey, signingPassword)
182182 sign publishing. publications. jar
183183}
You can’t perform that action at this time.
0 commit comments