chore: Upgraded to new workflow

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

View File

@@ -9,10 +9,10 @@ on:
jobs: jobs:
build: build:
uses: dreaded_x/workflows/.gitea/workflows/rust-kubernetes.yaml@22ee0c1788a8d2157db87d6a6f8dbe520fe48592 uses: dreaded_x/workflows/.gitea/workflows/docker-kubernetes.yaml@a302fa5a1ce1ac580039fa1ef306a9fd80f698e7
secrets: inherit secrets: inherit
with: with:
upload_manifests: false push_manifests: false
deploy: deploy:
name: Deploy container name: Deploy container

15
docker-bake.hcl Normal file
View File

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