Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
rbaul authored Dec 22, 2023
1 parent fad04f9 commit ba625f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions microservice-visualization/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ tasks.named('test') {

publishing {
publications {
mavenJava(MavenPublication) {
gpr(MavenPublication) {
// from components.java
artifact(tasks.bootJar)
}
Expand All @@ -59,8 +59,8 @@ publishing {
name = rootProject.name
url = "https://maven.pkg.github.com/rbaul/microservice-visualization"
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
Expand Down

0 comments on commit ba625f3

Please sign in to comment.