We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8fb39d6 + 6c05e09 commit 18c8bddCopy full SHA for 18c8bdd
src/buildx/history.ts
@@ -84,6 +84,9 @@ export class History {
84
core.info(`exporting build record to ${outDir}`);
85
fs.mkdirSync(outDir, {recursive: true});
86
87
+ // wait 3 seconds to ensure build records are finalized: https://github.com/moby/buildkit/pull/5109
88
+ await new Promise(resolve => setTimeout(resolve, 3000));
89
+
90
const buildxInFifoPath = Context.tmpName({
91
template: 'buildx-in-XXXXXX.fifo',
92
tmpdir: Context.tmpDir()
0 commit comments