chore(forge): add an arbitrary wait to see if it solves some CI errors

This commit is contained in:
Elian Doran 2025-06-21 13:19:35 +03:00
parent ce305f0f45
commit 4f6729857b
No known key found for this signature in database

View File

@ -211,6 +211,9 @@ const config: ForgeConfig = {
process.exit(1); process.exit(1);
} }
} }
// Wait for a while to ensure the file system operations are completed.
await new Promise(resolve => setTimeout(resolve, 3000));
}, },
// Gather all the artifacts produced by the makers and copy them to a common upload directory. // Gather all the artifacts produced by the makers and copy them to a common upload directory.
async postMake(_, makeResults) { async postMake(_, makeResults) {