Skip to content

Commit

Permalink
[patch] CARD-72: add options for gpr creds
Browse files Browse the repository at this point in the history
  • Loading branch information
jrsmth-tier2 committed May 31, 2024
1 parent 8eb25dc commit b871550
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ publishing {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/cardinal-app/security-services")
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
username = (project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")).toString()
password = (project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")).toString()
}
}
}
Expand Down

0 comments on commit b871550

Please sign in to comment.