Skip to content

Commit

Permalink
Update image names with suffix.
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed Oct 29, 2024
1 parent f764553 commit 1cec596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/image-matrix/action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ linux_images="$(\
name: (.
| map(.
| select(.hide != true)
| (.name | split("/")[-1] | split(":")[0]) + (.version // "" | tostring))
| (.name | split("/")[-1] | split(":")[0]) + (.version // "" | tostring) + (.suffix // "" | tostring))
)
| (. + [$os])
| join("-"),
Expand Down Expand Up @@ -99,7 +99,7 @@ if `# Include all images if full_matrix is true` \
name: (.
| map(.
| select(.hide != true)
| (.name | split("/")[-1] | split(":")[0]) + (.version // "" | tostring))
| (.name | split("/")[-1] | split(":")[0]) + (.version // "" | tostring) + (.suffix // "" | tostring))
)
| (. + [$os])
| join("-"),
Expand Down

0 comments on commit 1cec596

Please sign in to comment.