Skip to content

Commit

Permalink
Fix Maven publishing URL (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
edreed authored Dec 31, 2022
1 parent 7f299ff commit 5fcf1e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Next, add the NRG Common package repository to your `build.gradle` file.
```gradle
repositories {
maven {
url = uri("https://maven.pkg.github.com/edreed/nrgcommon")
url = uri("https://maven.pkg.github.com/NRG948/nrgcommon")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
Expand Down
2 changes: 1 addition & 1 deletion nrgcommon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ publishing {
mavenLocal()
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/edreed/nrgcommon"
url = "https://maven.pkg.github.com/NRG948/nrgcommon"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
Expand Down

0 comments on commit 5fcf1e0

Please sign in to comment.