Skip to content

Commit 63df329

Browse files
committed
update maven repository
1 parent fcffe08 commit 63df329

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

scripts/deploy-variables.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ if (secretPropsFile.exists()) {
1313
p.each { name, value -> ext[name] = value }
1414
} else {
1515
// Use system environment variables
16-
ext["ossrhUsername"] = System.getenv('CENTRAL_USERNAME')
17-
ext["ossrhPassword"] = System.getenv('CENTRAL_PASSWORD')
16+
ext["ossrhUsername"] = System.getenv('OSSRH_USERNAME')
17+
ext["ossrhPassword"] = System.getenv('OSSRH_PASSWORD')
18+
ext["centralUsername"] = System.getenv('CENTRAL_USERNAME')
19+
ext["centralPassword"] = System.getenv('CENTRAL_PASSWORD')
1820
ext["signing.keyId"] = System.getenv('SIGNING_KEY_ID')
1921
ext["signing.password"] = System.getenv('SIGNING_PASSWORD')
2022
ext["signing.key"] = System.getenv('SIGNING_KEY')

webrtc-android-framework/publish-remote.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ afterEvaluate {
7171
repositories {
7272
maven {
7373
credentials {
74-
username ossrhUsername
75-
password ossrhPassword
74+
username centralUsername
75+
password centralPassword
7676
}
7777

7878
def releasesRepoUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"

0 commit comments

Comments
 (0)