Skip to content

Commit

Permalink
chore: set clear text password in github source
Browse files Browse the repository at this point in the history
  • Loading branch information
coder2000 committed Jul 2, 2024
1 parent 7cb7303 commit 6d95ae6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ class Build : NukeBuild
DotNetNuGetAddSource(_ => _
.SetSource(GitHubSource)
.SetUsername(GitHubActions.Actor)
.SetPassword(GitHubToken));
.SetPassword(GitHubToken)
.SetStorePasswordInClearText(true));
}

DotNetNuGetPush(_ => _
Expand Down

0 comments on commit 6d95ae6

Please sign in to comment.