Skip to content

Commit c69ff13

Browse files
committed
fix: use the same keys in local.properties
1 parent f957a65 commit c69ff13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ dependencyResolutionManagement {
2828
}
2929

3030
username = System.getenv("GITHUB_ACTOR")
31-
?: localProperties.getProperty("github.user")
31+
?: localProperties.getProperty("gpr.user")
3232
?: providers.gradleProperty("gpr.user").orNull
3333

3434

3535
password = System.getenv("GITHUB_TOKEN")
36-
?: localProperties.getProperty("github.token")
36+
?: localProperties.getProperty("gpr.key")
3737
?: providers.gradleProperty("gpr.key").orNull
3838
}
3939
}

0 commit comments

Comments
 (0)