This commit is contained in:
Aditya Maru 2025-01-10 15:52:55 -05:00
parent 37974fc17e
commit f440133b20
3 changed files with 10 additions and 2 deletions

2
dist/index.js generated vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -213,6 +213,14 @@ actionsToolkit.run(
}
});
}
// Write a sentinel file to indicate builder setup is complete.
const sentinelPath = path.join('/tmp', 'builder-setup-complete');
try {
fs.writeFileSync(sentinelPath, 'Builder setup completed successfully.');
core.debug(`Created builder setup sentinel file at ${sentinelPath}`);
} catch (error) {
core.warning(`Failed to create builder setup sentinel file: ${error.message}`);
}
await core.group(`Proxy configuration`, async () => {
let dockerConfig: ConfigFile | undefined;