Skip to content

Commit 7b4ff2d

Browse files
authored
Merge pull request #11 from github/joshmgross/fix-upload-release
Send raw data when uploading release asset
2 parents 5ff35c8 + 385f957 commit 7b4ff2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
owner: context.repo.owner,
108108
repo: context.repo.repo,
109109
release_id: release.data.id,
110-
data: fs.readFileSync(path).toString(),
110+
data: fs.readFileSync(path),
111111
name: "vscode-github-actions-${{ env.EXT_VERSION }}.vsix",
112112
headers: {
113113
"content-type": "application/vsix",

0 commit comments

Comments
 (0)