Skip to content
This repository was archived by the owner on Apr 19, 2022. It is now read-only.

Commit 1fda41e

Browse files
committed
Update publish.gradle
1 parent 3ab0eff commit 1fda41e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CodeView/publish.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ publishing {
1515
name = "GithubPackages"
1616
url = uri("https://maven.pkg.github.com/jackdevey/codeview")
1717
credentials {
18-
username = System.getenv('GITHUB_USER') ?: project.properties['GITHUB_USER']
19-
password = System.getenv('GITHUB_PERSONAL_ACCESS_TOKEN') ?: project.properties['GITHUB_PERSONAL_ACCESS_TOKEN']
18+
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
19+
password = project.findProperty("gpr.key") ?: System.getenv("PASSWORD")
2020
}
2121
}
2222
maven {

0 commit comments

Comments
 (0)