Skip to content

Commit

Permalink
fix(ci): Fix publishing latest tag for default-flatpaks
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpinder committed Dec 24, 2024
1 parent 9c40055 commit 47c4358
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-individual.nu
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

}
Expand Down Expand Up @@ -94,4 +94,4 @@ $images | par-each { |img|

}

print $"(ansi green_bold)DONE!(ansi reset)"
print $"(ansi green_bold)DONE!(ansi reset)"

0 comments on commit 47c4358

Please sign in to comment.