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 || ''