mirror of
https://github.com/docker/build-push-action.git
synced 2026-01-14 08:13:09 +08:00
Compare commits
No commits in common. "66147ca503440c95dd9a97e9047c11af18d5cfeb" and "84ad562665bb303b549fec655d1b64f9945f3f91" have entirely different histories.
66147ca503
...
84ad562665
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
10
src/main.ts
10
src/main.ts
@ -108,9 +108,9 @@ actionsToolkit.run(
|
|||||||
if (inputs.call && inputs.call === 'check' && res.stdout.length > 0) {
|
if (inputs.call && inputs.call === 'check' && res.stdout.length > 0) {
|
||||||
// checks warnings are printed to stdout: https://github.com/docker/buildx/pull/2647
|
// checks warnings are printed to stdout: https://github.com/docker/buildx/pull/2647
|
||||||
// take the first line with the message summaryzing the warnings
|
// take the first line with the message summaryzing the warnings
|
||||||
err = new Error(res.stdout.split('\n')[0]?.trim());
|
err = Error(res.stdout.split('\n')[0]?.trim());
|
||||||
} else if (res.stderr.length > 0) {
|
} else if (res.stderr.length > 0) {
|
||||||
err = new Error(`buildx failed with: ${res.stderr.match(/(.*)\s*$/)?.[0]?.trim() ?? 'unknown error'}`);
|
err = Error(`buildx failed with: ${res.stderr.match(/(.*)\s*$/)?.[0]?.trim() ?? 'unknown error'}`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -225,11 +225,7 @@ actionsToolkit.run(
|
|||||||
}
|
}
|
||||||
if (stateHelper.tmpDir.length > 0) {
|
if (stateHelper.tmpDir.length > 0) {
|
||||||
await core.group(`Removing temp folder ${stateHelper.tmpDir}`, async () => {
|
await core.group(`Removing temp folder ${stateHelper.tmpDir}`, async () => {
|
||||||
try {
|
|
||||||
fs.rmSync(stateHelper.tmpDir, {recursive: true});
|
fs.rmSync(stateHelper.tmpDir, {recursive: true});
|
||||||
} catch (e) {
|
|
||||||
core.warning(`Failed to remove temp folder ${stateHelper.tmpDir}`);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -289,7 +285,7 @@ function buildRecordRetentionDays(): number | undefined {
|
|||||||
if (val) {
|
if (val) {
|
||||||
const res = parseInt(val);
|
const res = parseInt(val);
|
||||||
if (isNaN(res)) {
|
if (isNaN(res)) {
|
||||||
throw new Error(`Invalid build record retention days: ${val}`);
|
throw Error(`Invalid build record retention days: ${val}`);
|
||||||
}
|
}
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user