log the prefix task id since its more user readable
parent
5158225acc
commit
c675e14e3a
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -101,7 +101,8 @@ async function getRemoteBuilderAddr(inputs: context.Inputs): Promise<string | nu
|
|||
|
||||
const data = response.data;
|
||||
const taskId = data['id'] as string;
|
||||
core.info(`Submitted build task: ${taskId}`);
|
||||
const prefixTaskId = data['prefix_id'] as string;
|
||||
core.info(`Submitted build task: ${prefixTaskId}`);
|
||||
stateHelper.setBlacksmithBuildTaskId(taskId);
|
||||
const clientKey = data['client_key'] as string;
|
||||
stateHelper.setBlacksmithClientKey(clientKey);
|
||||
|
|
Loading…
Reference in New Issue