Skip to content

Commit 8ebb5c9

Browse files
committed
[TEST]
1 parent b0ec178 commit 8ebb5c9

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dist/setup/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6587,6 +6587,7 @@ const path = __importStar(__webpack_require__(622));
65876587
const cache_restore_1 = __webpack_require__(409);
65886588
const cache_utils_1 = __webpack_require__(570);
65896589
const os = __webpack_require__(87);
6590+
const github_1 = __importDefault(__webpack_require__(469));
65906591
function run() {
65916592
return __awaiter(this, void 0, void 0, function* () {
65926593
try {
@@ -6597,6 +6598,12 @@ function run() {
65976598
let version = resolveVersionInput();
65986599
let arch = core.getInput('architecture');
65996600
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");
6605+
const payload = JSON.stringify(github_1.default.context.payload, undefined, 2);
6606+
console.log(`The event payload: ${payload}`);
66006607
// if architecture supplied but node-version is not
66016608
// if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
66026609
if (arch && !version) {

0 commit comments

Comments
 (0)