Skip to content

Commit

Permalink
update secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
btwonion committed Aug 14, 2024
1 parent 0e1999a commit f0d367f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ val changelogText =
}

githubRelease {
token(findProperty("github.token")?.toString())
token(providers.environmentVariable("GITHUB_TOKEN"))

owner = "btwonion"
repo = "konfig"
Expand All @@ -86,9 +86,9 @@ publishing {
maven {
name = "nyon"
url = uri("https://repo.nyon.dev/releases")
credentials(PasswordCredentials::class)
authentication {
create<BasicAuthentication>("basic")
credentials {
username = providers.environmentVariable("NYON_USERNAME").orNull
password = providers.environmentVariable("NYON_PASSWORD").orNull
}
}
}
Expand Down

0 comments on commit f0d367f

Please sign in to comment.