Skip to content

Commit

Permalink
chore: update GitHub credentials in app/build.gradle.kts
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiinaKin committed Oct 20, 2024
1 parent 431d999 commit 5d36fe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repositories {
url = uri("https://maven.pkg.github.com/ShiinaKin/ktor-simple-cache")
credentials {
username = "ShiinaKin"
password = env.GITHUB_PAT.orNull() ?: System.getenv("GITHUB_TOKEN")
password = if (env.GITHUB_PAT.isPresent) env.GITHUB_PAT.value else System.getenv("GITHUB_TOKEN")
}
}
}
Expand Down

0 comments on commit 5d36fe1

Please sign in to comment.