Skip to content

Commit 2aa7092

Browse files
committed
fix html lib publication
1 parent cd23ca8 commit 2aa7092

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

html/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@ subprojects {
6868
repositories {
6969
maven {
7070
name = "internal"
71-
url = uri(COMPOSE_REPO_URL ?: "https://packages.jetbrains.team/maven/p/cmp/dev")
71+
url = uri(COMPOSE_REPO_URL ?: System.getenv("COMPOSE_REPO_URL") ?: "https://packages.jetbrains.team/maven/p/cmp/dev")
7272
credentials {
73-
username = COMPOSE_REPO_USERNAME ?: ""
74-
password = COMPOSE_REPO_KEY ?: ""
73+
username = COMPOSE_REPO_USERNAME ?: System.getenv("COMPOSE_REPO_USERNAME") ?: ""
74+
password = COMPOSE_REPO_KEY ?: System.getenv("COMPOSE_REPO_KEY") ?: ""
7575
}
7676
}
7777
}

0 commit comments

Comments
 (0)