Skip to content

Commit

Permalink
Fix sonatype credentials in release script (#182)
Browse files Browse the repository at this point in the history
Only the sonatypeUsername and sonatypePassword variables are used by the new plugin.
  • Loading branch information
aengelberg authored Aug 17, 2022
1 parent 206023e commit 6c28e9b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .ldrelease/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ cat >~/.gradle/gradle.properties <<EOF
signing.keyId = ${android_code_signing_key_id}
signing.password = ${android_code_signing_password}
signing.secretKeyRingFile = ${LD_RELEASE_SECRETS_DIR}/android_code_signing_keyring
ossrhUsername = ${android_sonatype_username}
ossrhPassword = ${android_sonatype_password}
nexusUsername = ${android_sonatype_username}
nexusPassword = ${android_sonatype_password}
sonatypeUsername = ${android_sonatype_username}
sonatypePassword = ${android_sonatype_password}
systemProp.org.gradle.internal.launcher.welcomeMessageEnabled = false
EOF

0 comments on commit 6c28e9b

Please sign in to comment.