From 385f9572f2030270fa05b0a04b3e2d68201bfb1e Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Tue, 21 Mar 2023 18:04:52 -0400 Subject: [PATCH] Send raw data when uploading release asset --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cf750064..ea56784a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -107,7 +107,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, release_id: release.data.id, - data: fs.readFileSync(path).toString(), + data: fs.readFileSync(path), name: "vscode-github-actions-${{ env.EXT_VERSION }}.vsix", headers: { "content-type": "application/vsix",