File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -6587,6 +6587,7 @@ const path = __importStar(__webpack_require__(622));
6587
6587
const cache_restore_1 = __webpack_require__(409);
6588
6588
const cache_utils_1 = __webpack_require__(570);
6589
6589
const os = __webpack_require__(87);
6590
+ const github_1 = __importDefault(__webpack_require__(469));
6590
6591
function run() {
6591
6592
return __awaiter(this, void 0, void 0, function* () {
6592
6593
try {
@@ -6597,6 +6598,12 @@ function run() {
6597
6598
let version = resolveVersionInput();
6598
6599
let arch = core.getInput('architecture');
6599
6600
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}`);
6600
6607
// if architecture supplied but node-version is not
6601
6608
// if we don't throw a warning, the already installed x64 node will be used which is not probably what user meant.
6602
6609
if (arch && !version) {
You can’t perform that action at this time.
0 commit comments