mirror of
https://github.com/GoTestTools/gotestfmt-action.git
synced 2026-02-08 00:37:27 +00:00
Add debugger lines
Signed-off-by: Yuri Norwood <106889957+norwd@users.noreply.github.com>
This commit is contained in:
parent
73534fb549
commit
23017b3af3
1 changed files with 7 additions and 0 deletions
7
index.js
7
index.js
|
|
@ -16,6 +16,13 @@ async function downloadRelease(octokit, os, org, repo, release, token) {
|
|||
const binpath = os === "windows" ? process.env.USERPROFILE + "\\bin" : "/usr/local/bin";
|
||||
const extract = os === "windows" ? "tar -xvf" : "tar -xvzf";
|
||||
const archive = `${tempdir}${pathsep}gotestfmt${postfix}`;
|
||||
|
||||
console.log("postfix: " + postfix);
|
||||
console.log("pathsep: " + pathsep);
|
||||
console.log("tempdir: " + tempdir);
|
||||
console.log("binpath: " + binpath);
|
||||
console.log("extract: " + extract);
|
||||
console.log("archive: " + archive);
|
||||
|
||||
for (let asset of releaseAssets.data) {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue