Skip to content

Commit

Permalink
fix: test?
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Jun 12, 2024
1 parent dafe9e7 commit a746f5b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 deletions action/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33153,10 +33153,11 @@ function setup() {
accept: 'application/octet-stream'
});
core.info(`Successfully downloaded network-hub to ${binPath}`);
let extractArgs = core.getMultilineInput("extractArgs");
let extractedPath = yield tc.extractTar(binPath, undefined, extractArgs);
core.info(`Successfully extracted network-hub to ${extractedPath}`);
core.addPath(extractedPath);
//
// let extractArgs = core.getMultilineInput("extractArgs");
// let extractedPath = await tc.extractTar(binPath, undefined, extractArgs);
// core.info(`Successfully extracted network-hub to ${extractedPath}`)
core.addPath(binPath);
});
}
setup().catch((error) => {
Expand Down
10 changes: 5 additions & 5 deletions action/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ async function setup() {
);

core.info(`Successfully downloaded network-hub to ${binPath}`)

let extractArgs = core.getMultilineInput("extractArgs");
let extractedPath = await tc.extractTar(binPath, undefined, extractArgs);
core.info(`Successfully extracted network-hub to ${extractedPath}`)
core.addPath(extractedPath);
//
// let extractArgs = core.getMultilineInput("extractArgs");
// let extractedPath = await tc.extractTar(binPath, undefined, extractArgs);
// core.info(`Successfully extracted network-hub to ${extractedPath}`)
core.addPath(binPath);
}

setup().catch((error) => {
Expand Down

0 comments on commit a746f5b

Please sign in to comment.