mirror of
https://github.com/docker/build-push-action.git
synced 2025-05-18 15:56:37 +00:00
wip
This commit is contained in:
parent
37974fc17e
commit
f440133b20
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user