From bd27a5a4f183e72cbe4268e1f86ee11f4dcbbafe Mon Sep 17 00:00:00 2001 From: Andrei Dziahel Date: Thu, 30 Jul 2026 23:38:41 +0200 Subject: [PATCH] fix(ci): generate_dockerfiles.nu: path parse returns record, not table nushell rejects the `: table` annotation on `path parse` output at parse time (it returns `record`), so the generator workflow exits 1 before generating anything. Bumps into every PR since generator.yml runs on `pull_request: {}`; surfaced on #213 but is unrelated to it. --- generate_dockerfiles.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generate_dockerfiles.nu b/generate_dockerfiles.nu index fd0e4dfc..7cb3270c 100644 --- a/generate_dockerfiles.nu +++ b/generate_dockerfiles.nu @@ -43,7 +43,7 @@ def main [ # `nickel` errors abort the script via the surrounding shell, so a # non-zero exit is the error signal. def gen-file [template_dir: path]: path -> string { - let parts: table = $in | path parse + let parts: record = $in | path parse let template: path = $template_dir | path join Dockerfile.ncl let schema: path = $template_dir | path join schema.ncl let outfile: path = [$parts.parent $parts.stem Dockerfile] | path join