Skip to content

Commit

Permalink
Attempt to fix unzip failures (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
mothran committed Mar 20, 2023
1 parent 0953b45 commit b4a4cb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bench_pr_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
var fs = require('fs');
fs.writeFileSync('${{github.workspace}}/md-output.zip', Buffer.from(download.data));
- run: unzip md-output.zip
- run: unzip -o md-output.zip

- name: Merge output files
shell: bash
run: sed h ./md-output/*-output.md > merged.md
run: sed h ./*-output.md > merged.md
id: download

- uses: actions/github-script@v3
Expand Down

0 comments on commit b4a4cb3

Please sign in to comment.