viza 1.7.20 → 1.7.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/core/dispatch.js +10 -4
- package/package.json +1 -1
|
@@ -23,11 +23,17 @@ function maybeRenderLog(result, policy, commandType) {
|
|
|
23
23
|
renderLog(result.logBuffer, { status: result.status });
|
|
24
24
|
return;
|
|
25
25
|
}
|
|
26
|
-
// Log artifact not available (likely
|
|
27
|
-
const title = chalk.yellow("\n⚠️
|
|
28
|
-
const
|
|
26
|
+
// Log artifact not available (likely GitHub log archive not ready yet)
|
|
27
|
+
const title = chalk.yellow("\n⚠️ Execution finished but the workflow log is not ready yet.");
|
|
28
|
+
const reason = chalk.dim(" GitHub often needs a few seconds after completion before the log archive can be downloaded.");
|
|
29
|
+
const retryHint = chalk.cyanBright("--status");
|
|
29
30
|
console.log(title);
|
|
30
|
-
console.log(
|
|
31
|
+
console.log(reason);
|
|
32
|
+
console.log(chalk.dim(" Run the same command again with") +
|
|
33
|
+
" " +
|
|
34
|
+
retryHint +
|
|
35
|
+
chalk.dim(" to retry downloading the workflow log.") +
|
|
36
|
+
"\n");
|
|
31
37
|
}
|
|
32
38
|
function assertDispatchInputStrict(input) {
|
|
33
39
|
// Required top-level fields
|