We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd23ca8 commit 2aa7092Copy full SHA for 2aa7092
html/build.gradle.kts
@@ -68,10 +68,10 @@ subprojects {
68
repositories {
69
maven {
70
name = "internal"
71
- url = uri(COMPOSE_REPO_URL ?: "https://packages.jetbrains.team/maven/p/cmp/dev")
+ url = uri(COMPOSE_REPO_URL ?: System.getenv("COMPOSE_REPO_URL") ?: "https://packages.jetbrains.team/maven/p/cmp/dev")
72
credentials {
73
- username = COMPOSE_REPO_USERNAME ?: ""
74
- password = COMPOSE_REPO_KEY ?: ""
+ username = COMPOSE_REPO_USERNAME ?: System.getenv("COMPOSE_REPO_USERNAME") ?: ""
+ password = COMPOSE_REPO_KEY ?: System.getenv("COMPOSE_REPO_KEY") ?: ""
75
}
76
77
0 commit comments