build system updates

This commit is contained in:
Mistral Vibe
2026-04-10 00:35:15 +02:00
parent 8ea114755a
commit 21ff7167c4
4 changed files with 59 additions and 78 deletions

View File

@@ -251,3 +251,19 @@ tasks:
interactive: true
cmds:
- "{{.COMPOSE}} exec redis redis-cli"
# ── Registry ──────────────────────────────────────────────────────────────────
registry:login:
desc: Login to Gitea Docker registry
cmds:
- docker login git.sschuhmann.de
registry:build:
desc: Build all images with version tag (requires git tag)
cmds:
- bash scripts/build-and-push.sh
registry:push:
desc: Build and push all images to Gitea registry
deps: [registry:login, registry:build]