From 86ebb069edd56c1760c1b3405a4ed797caea6229 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 5 Feb 2024 17:44:28 -0500 Subject: [PATCH] Fix release publishing failure. --- release.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/release.ps1 b/release.ps1 index a579bd6..3bb4b42 100644 --- a/release.ps1 +++ b/release.ps1 @@ -42,6 +42,7 @@ function Invoke-GitHubRequest($Method, $Uri, $Body, $ValidResults) { -Uri "$Uri" ` -Method "$Method" ` -Headers $RequestHeaders ` + -ContentType "application/json" ` -Body @(ConvertTo-JSON $Body) ` -SkipHttpErrorCheck Test-GitHubResult `