Compare commits

..

2 Commits

Author SHA1 Message Date
37137e8b0a fix: Chef cook uses wrong toolchain
All checks were successful
Build and deploy / build (push) Successful in 10m41s
Build and deploy / Deploy container (push) Successful in 42s
This adds a toolchain setup step to the base image so we do not have to
do it multiple times
2025-11-20 04:10:16 +01:00
f9ba81f2b5 chore: Upgraded to new workflow 2025-11-20 04:10:16 +01:00

View File

@@ -2,17 +2,14 @@ variable "TAG_BASE" {}
variable "RELEASE_VERSION" {} variable "RELEASE_VERSION" {}
group "default" { group "default" {
targets = ["automation"] targets = ["automation"]
} }
target "docker-metadata-action" {} target "docker-metadata-action" {}
target "automation" { target "automation" {
inherits = ["docker-metadata-action"] inherits = ["docker-metadata-action"]
context = "./" context = "./"
dockerfile = "Dockerfile" dockerfile = "Dockerfile"
tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"] tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"]
args = {
RELEASE_VERSION="${RELEASE_VERSION}"
}
} }