Skip to content

Commit

Permalink
fix: force https
Browse files Browse the repository at this point in the history
  • Loading branch information
vpa1977 committed Oct 18, 2024
1 parent b9f2621 commit f9ba71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ allprojects {
repositories {
maven {
name = "GitHubPackages"
url = uri(System.getenv("GHP_REPO") ?: "")
url = uri("https://github.com/"+ System.getenv("GHP_REPO") ?: "")
credentials {
username = project.findProperty("gpr.user") as String? ?: System.getenv("GHP_USERNAME")
password = project.findProperty("gpr.key") as String? ?: System.getenv("GHP_TOKEN")
Expand Down

0 comments on commit f9ba71c

Please sign in to comment.