Log job run UUID
This commit is contained in:
parent
d620faa0b4
commit
41833c77c6
3 changed files with 8 additions and 3 deletions
|
|
@ -272,7 +272,10 @@ async function run() {
|
|||
logger,
|
||||
);
|
||||
|
||||
core.exportVariable(EnvVar.JOB_RUN_UUID, uuidV4());
|
||||
const jobRunUuid = uuidV4();
|
||||
logger.info(`Job run UUID is ${jobRunUuid}.`);
|
||||
core.exportVariable(EnvVar.JOB_RUN_UUID, jobRunUuid);
|
||||
|
||||
core.exportVariable(EnvVar.INIT_ACTION_HAS_RUN, "true");
|
||||
|
||||
try {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue