Skip to content

Commit

Permalink
update nexus secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavoyan committed Nov 24, 2023
1 parent 96e9d29 commit 160e938
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions publish-core.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Properties properties = new Properties()
properties.load(new FileInputStream(rootProject.file(
'/Volumes/Keybase/team/velocitycareers/mobile/android/maven/sonatype.properties'
'/Volumes/Keybase/team/velocitycareers/mobile/android/maven/nexus.properties'
)))

ext {
signingKeyId = System.getenv("SIGNING_KEY_ID") ?: properties["signingKeyId"]
signingPassword = System.getenv("SIGNING_PASSWORD") ?: properties["signingPassword"]
ossrhUsername = System.getenv("OSSRH_USERNAME") ?: properties["ossrhUsername"]
ossrhPassword = System.getenv("OSSRH_PASSWORD") ?: properties["ossrhPassword"]
sonatypeStagingProfileId = System.getenv("SONATYPE_STAGING_PROFILE_ID") ?: properties["sonatypeStagingProfileId"]
signingPrivateKey = System.getenv("SIGNING_KEY") ?: properties["signingPrivateKey"]
signingKeyId = System.getenv("ANDROID_NEXUS_SIGNING_KEY_ID") ?: properties["signingKeyId"]
signingPassword = System.getenv("ANDROID_NEXUS_SIGNING_PWD") ?: properties["signingPassword"]
ossrhUsername = System.getenv("ANDROID_NEXUS_OSSRH_USERNAME") ?: properties["ossrhUsername"]
ossrhPassword = System.getenv("ANDROID_NEXUS_OSSRH_PWD") ?: properties["ossrhPassword"]
sonatypeStagingProfileId = System.getenv("ANDROID_NEXUS_STAGING_PROFILE_ID") ?: properties["stagingProfileId"]
signingPrivateKey = System.getenv("ANDROID_NEXUS_PRIVATE_KEY") ?: properties["signingPrivateKey"]
}

//println("signingKeyId: ${signingKeyId}")
Expand Down

0 comments on commit 160e938

Please sign in to comment.