v0.0.60: why didn't it print

This commit is contained in:
Edwin Sirko
2024-01-26 16:34:39 +00:00
committed by ddivad195
parent d5e6f39e19
commit 4772dbfcc0
2 changed files with 4 additions and 2 deletions
Generated Vendored
+2 -1
View File
@@ -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 === '') {
+2 -1
View File
@@ -18,7 +18,8 @@ export async function run(): Promise<void> {
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 || ''