Skip to content
This repository has been archived by the owner on Oct 19, 2021. It is now read-only.

Commit

Permalink
fix publish env reference
Browse files Browse the repository at this point in the history
  • Loading branch information
dtanner committed Oct 18, 2021
1 parent a3cfc4f commit 432d7af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ publishing {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/dtanner/env-override")
credentials {
username = project.findProperty("GITHUB_ACTOR") ?: System.getenv("USERNAME")
password = project.findProperty("GITHUB_TOKEN") ?: System.getenv("TOKEN")
username = project.findProperty("GITHUB_ACTOR") ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("GITHUB_TOKEN") ?: System.getenv("GITHUB_TOKEN")
}
}
}
Expand Down

0 comments on commit 432d7af

Please sign in to comment.