Skip to content

Commit

Permalink
change encoding and remove check
Browse files Browse the repository at this point in the history
  • Loading branch information
lldelisle committed Jan 11, 2024
1 parent 5f19ae1 commit dc77882
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/comment_on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ jobs:
var fs = require('fs');
fs.writeFileSync('${{github.workspace}}/upload.zip', Buffer.from(download.data));
- run: unzip upload.zip
- name: Check the output of unzip
run: |
ls
- name: 'Comment on PR'
uses: actions/github-script@v3
with:
Expand All @@ -48,5 +45,5 @@ jobs:
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: fs.readFileSync('./tool_test_output.md')
body: fs.readFileSync('./tool_test_output.md', 'utf-8')
});

0 comments on commit dc77882

Please sign in to comment.