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.
@@ -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 download failed or not ready)
27
- const title = chalk.yellow("\n⚠️ Log artifact is not available yet.");
28
- const cmd = chalk.cyan(`viza ${commandType} --status`);
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(chalk.dim(" Run:") + " " + cmd + "\n");
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viza",
3
- "version": "1.7.20",
3
+ "version": "1.7.22",
4
4
  "type": "module",
5
5
  "description": "Viza unified command line interface",
6
6
  "bin": {