chore: Upgraded to new workflow

This commit is contained in:
2025-11-16 22:21:08 +01:00
parent b547f66d86
commit 2158bde1c2
2 changed files with 21 additions and 3 deletions

18
docker-bake.hcl Normal file
View File

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