`Set-GitHubContent` needed to use the `UTF8` encoder, just like `Get-GitHubContent`, as opposed to the `Unicode` encoder.
This commit is contained in:
jing8956 2021-05-11 12:12:43 +08:00 коммит произвёл GitHub
Родитель 002363505f
Коммит 1200b5b36a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -358,7 +358,7 @@ filter Set-GitHubContent
$uriFragment = "/repos/$OwnerName/$RepositoryName/contents/$Path"
$encodedContent = [Convert]::ToBase64String([System.Text.Encoding]::Unicode.GetBytes($Content))
$encodedContent = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($Content))
$hashBody = @{
message = $CommitMessage