Skip to content

Commit c8de22c

Browse files
committed
[TEST]
1 parent 967eac4 commit c8de22c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

dist/setup/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6598,10 +6598,6 @@ function run() {
65986598
let version = resolveVersionInput();
65996599
let arch = core.getInput('architecture');
66006600
const cache = core.getInput('cache');
6601-
const nameToGreet = core.getInput('who-to-greet');
6602-
console.log(`Hello ${nameToGreet}!`);
6603-
const time = (new Date()).toTimeString();
6604-
core.setOutput("time", "30");
66056601
const payload = JSON.stringify(github_1.default.context.payload, undefined, 2);
66066602
console.log(`The event payload: ${payload}`);
66076603
// if architecture supplied but node-version is not
@@ -61240,6 +61236,7 @@ function getNode(versionSpec, stable, checkLatest, auth, arch = os.arch()) {
6124061236
if (info) {
6124161237
core.info(`Acquiring ${info.resolvedVersion} - ${info.arch} from ${info.downloadUrl}`);
6124261238
downloadPath = yield tc.downloadTool(info.downloadUrl, undefined, auth);
61239+
console.log("here bro 2");
6124361240
}
6124461241
else {
6124561242
core.info('Not found in manifest. Falling back to download directly from Node');

src/installer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export async function getNode(
9494
`Acquiring ${info.resolvedVersion} - ${info.arch} from ${info.downloadUrl}`
9595
);
9696
downloadPath = await tc.downloadTool(info.downloadUrl, undefined, auth);
97-
console.log("here bro");
97+
console.log("here bro 2");
9898
} else {
9999
core.info(
100100
'Not found in manifest. Falling back to download directly from Node'

0 commit comments

Comments
 (0)