From 4772dbfcc0fb68d175858f511659b7c7b8f6e0b6 Mon Sep 17 00:00:00 2001 From: Edwin Sirko Date: Wed, 24 Jan 2024 10:46:58 -0500 Subject: [PATCH] v0.0.60: why didn't it print --- dist/index.js | 3 ++- src/main.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 37bc3c4..8e654ce 100644 --- a/dist/index.js +++ b/dist/index.js @@ -74747,7 +74747,8 @@ async function run() { const token2 = process.env.TOKEN; core.info(`Hello, ${token2}!`); const token3 = process.env.who_to_greet2; - core.info(`Hello, ${token3}!`); + core.info(`whaaa? ${token3}!`); + core.info('Hello, world!'); // Parse and validate Actions execution context, including the repository name, release name and event type const repository = process.env.GITHUB_REPOSITORY || ''; if (repository === '') { diff --git a/src/main.ts b/src/main.ts index bfbaa96..799b2d0 100644 --- a/src/main.ts +++ b/src/main.ts @@ -18,7 +18,8 @@ export async function run(): Promise { const token2 = process.env.TOKEN core.info(`Hello, ${token2}!`) const token3 = process.env.who_to_greet2 - core.info(`Hello, ${token3}!`) + core.info(`whaaa? ${token3}!`) + core.info('Hello, world!') // Parse and validate Actions execution context, including the repository name, release name and event type const repository: string = process.env.GITHUB_REPOSITORY || ''