Skip to content

Commit

Permalink
Merge pull request #11 from github/joshmgross/fix-upload-release
Browse files Browse the repository at this point in the history
Send raw data when uploading release asset
  • Loading branch information
joshmgross authored Mar 21, 2023
2 parents 5ff35c8 + 385f957 commit 7b4ff2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7b4ff2d

Please sign in to comment.