Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
rbaul authored and rbaul committed Dec 23, 2023
2 parents 599cba9 + ba625f3 commit e79c39f
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 @@ -52,7 +52,7 @@ tasks.named('test') {

publishing {
publications {
mavenJava(MavenPublication) {
gpr(MavenPublication) {
// from components.java
artifact(tasks.bootJar)
}
Expand All @@ -63,8 +63,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 e79c39f

Please sign in to comment.