From 49362d8aae33549d8354d61261025f9e4ce3f660 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Wed, 25 Dec 2024 00:08:58 -0500 Subject: [PATCH] fix(ci): Fix publishing latest tag for default-flatpaks (#379) --- build-individual.nu | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-individual.nu b/build-individual.nu index 9b2f1e7..1d20a74 100644 --- a/build-individual.nu +++ b/build-individual.nu @@ -66,7 +66,7 @@ let images = ls modules | each { |moduleDir| let latest = ($versioned | last) ($versioned | update (($versioned | length) - 1) # update the last / latest item in list - ($latest | update "tags" ($latest.tags | append latest_tag)) # append tag which should only be given to the latest version + ($latest | update "tags" ($latest.tags | append $latest_tag)) # append tag which should only be given to the latest version ) } @@ -94,4 +94,4 @@ $images | par-each { |img| } -print $"(ansi green_bold)DONE!(ansi reset)" \ No newline at end of file +print $"(ansi green_bold)DONE!(ansi reset)"