Skip to content

Commit

Permalink
Merge pull request #96 from authzed/fix-release-workflow
Browse files Browse the repository at this point in the history
Fix release workflow
  • Loading branch information
samkim authored Jul 1, 2024
2 parents 54876ed + 99e7785 commit 2b175eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ publishing {
repositories { maven {
def releasesRepoUrl = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
def ossrhUsername = findProperty("ossrhUsername")
def ossrhPassword = findProperty("ossrhPassword")
def ossrhUsername = findProperty("sonatypeUsername")
def ossrhPassword = findProperty("sonatypePassword")

name = "authzed"
url = project.hasProperty("release") ? releasesRepoUrl : snapshotsRepoUrl
Expand Down

0 comments on commit 2b175eb

Please sign in to comment.