Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
eadm committed Jun 6, 2021
1 parent d02d01a commit 2d864d6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ Add following repository to access binaries
```groovy
allprojects {
repositories {
maven { url "https://maven.pkg.github.com/eadm/ktlint-rules" }
maven {
url = "https://maven.pkg.github.com/eadm/ktlint-rules"
credentials {
username = System.getenv("GITHUB_USER") ?: project.properties["GITHUB_USER"]
password = System.getenv("GITHUB_PERSONAL_ACCESS_TOKEN") ?: project.properties["GITHUB_PERSONAL_ACCESS_TOKEN"]
}
}
}
}
```
Expand Down

0 comments on commit 2d864d6

Please sign in to comment.