Skip to content

Commit

Permalink
Set GitHub username to a hardcoded value
Browse files Browse the repository at this point in the history
Replaced the dynamic retrieval of the GitHub username via an environment variable with a hardcoded value "PandaDap2006". This change simplifies the credential setup for GitHub package publishing.
  • Loading branch information
ThePandaOliver committed Aug 23, 2024
1 parent 5644238 commit cd6ad94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ subprojects {
name = "Github"
url = uri("https://maven.pkg.github.com/${properties["publishingGitHubRepo"]}")
credentials {
username = System.getenv("GITHUB_ACTOR")
username = "PandaDap2006"
password = System.getenv("GITHUB_TOKEN")
}
}
Expand Down

0 comments on commit cd6ad94

Please sign in to comment.