Skip to content
Snippets Groups Projects
Unverified Commit efc6eb00 authored by Mathijs van Veluw's avatar Mathijs van Veluw Committed by GitHub
Browse files

Fix missing alpine tag during buildx bake (#4043)

The bake recipt was missing the single `:alpine` tag for the alpine
builds when we were releasing a `stable/latest` version of Vaultwarden.

This PR fixes this by checking for those conditions and add the
`:alpine` tag too.

We will keep the `:latest-alpine` also, which i find even nicer then just
`:alpine`

Fixes #4035
parent cec1e876
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,13 @@ function "generate_tags" { ...@@ -216,7 +216,13 @@ function "generate_tags" {
result = flatten([ result = flatten([
for registry in get_container_registries() : for registry in get_container_registries() :
[for base_tag in get_base_tags() : [for base_tag in get_base_tags() :
concat(["${registry}:${base_tag}${suffix}${platform}"])] concat(
# If the base_tag contains latest, and the suffix contains `-alpine` add a `:alpine` tag too
base_tag == "latest" ? suffix == "-alpine" ? ["${registry}:alpine${platform}"] : [] : [],
# The default tagging strategy
["${registry}:${base_tag}${suffix}${platform}"]
)
]
]) ])
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment