Skip to content

Commit

Permalink
(ci) add maven fallback url for null checking in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Lori3f6 committed Aug 13, 2024
1 parent f45eed1 commit 76989a4
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 @@ -41,7 +41,7 @@ publishing {
repositories {
maven {
name = "github-package"
url = URI(System.getenv("GITHUB_MAVEN_URL"))
url = URI(System.getenv("GITHUB_MAVEN_URL") ?: "https://github.com")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand Down

0 comments on commit 76989a4

Please sign in to comment.