mirror of
https://github.com/docker/build-push-action.git
synced 2025-04-20 02:16:45 +00:00
don't generate summary for cloud driver
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
parent
667cb22c52
commit
dc24cf9e25
2 changed files with 12 additions and 0 deletions
|
@ -83,6 +83,7 @@ actionsToolkit.run(
|
|||
await core.group(`Builder info`, async () => {
|
||||
const builder = await toolkit.builder.inspect(inputs.builder);
|
||||
core.info(JSON.stringify(builder, null, 2));
|
||||
stateHelper.setBuilder(builder);
|
||||
});
|
||||
|
||||
const args: string[] = await context.getArgs(inputs, toolkit);
|
||||
|
@ -145,6 +146,10 @@ actionsToolkit.run(
|
|||
core.info('Summary disabled');
|
||||
return;
|
||||
}
|
||||
if (stateHelper.builder && stateHelper.builder.driver === 'cloud') {
|
||||
core.info('Summary is not yet supported with Docker Build Cloud');
|
||||
return;
|
||||
}
|
||||
try {
|
||||
const buildxHistory = new BuildxHistory();
|
||||
const exportRes = await buildxHistory.export({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue