chore: Upgraded to new workflow
Some checks are pending
Build and deploy / Deploy container (push) Blocked by required conditions
Build and deploy / build (push) Successful in 16m44s

This commit is contained in:
2025-11-16 22:21:08 +01:00
parent f3de8e36ea
commit 32255548a4
2 changed files with 31 additions and 2 deletions

29
docker-bake.hcl Normal file
View File

@@ -0,0 +1,29 @@
variable "TAG_BASE" {}
group "default" {
targets = ["automation"]
}
target "docker-metadata-action" {}
# TODO: Auto include this from the workflow
target "common" {
cache-from = [
{
type = "gha"
}
]
cache-to = [
{
type = "gha"
mode = "max"
}
]
}
target "automation" {
inherits = ["docker-metadata-action", "common"]
context = "./"
dockerfile = "Dockerfile"
tags = [for tag in target.docker-metadata-action.tags : "${TAG_BASE}:${tag}"]
}