Skip to content

Commit

Permalink
build: removed publishing to github packages
Browse files Browse the repository at this point in the history
  • Loading branch information
slisson committed May 23, 2024
1 parent 9b9478d commit d7bfe41
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,6 @@ allprojects {
}
}
}

val ghp_username = project.findProperty("gpr.user") as? String ?: System.getenv("GITHUB_ACTOR")
val ghp_password = project.findProperty("gpr.key") as? String ?: System.getenv("GITHUB_TOKEN")

if (ghp_username != null && ghp_password != null) {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/modelix/incremental")
credentials {
username = ghp_username
password = ghp_password
}
}
}
}
}
}

0 comments on commit d7bfe41

Please sign in to comment.