mirror of
https://github.com/docker/build-push-action.git
synced 2025-05-06 13:39:30 +02:00
wip
This commit is contained in:
parent
37974fc17e
commit
f440133b20
3 changed files with 10 additions and 2 deletions
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 () => {
|
await core.group(`Proxy configuration`, async () => {
|
||||||
let dockerConfig: ConfigFile | undefined;
|
let dockerConfig: ConfigFile | undefined;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue