Skip to content

Commit

Permalink
fix: arguments go into an array
Browse files Browse the repository at this point in the history
  • Loading branch information
kristof-mattei committed Oct 30, 2021
1 parent edd13c8 commit 9c6ff93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
const tc = require("@actions/tool-cache");
const urlToGrcovTar = "https://github.com/mozilla/grcov/releases/download/v0.8.2/grcov-linux-x86_64.tar.bz2";
const grcovTarPath = await tc.downloadTool(urlToGrcovTar);
const craneExtractedFolder = await tc.extractTar(grcovTarPath, "--extract"); // no z, or gzip, as it's a bz2
const craneExtractedFolder = await tc.extractTar(grcovTarPath, ["--extract"]); // no z, or gzip, as it's a bz2
core.addPath(craneExtractedFolder);
- name: Generate test result and coverage report
Expand Down

0 comments on commit 9c6ff93

Please sign in to comment.