Files
warehouse13/.gitlab-ci.yml
Mondo Diaz 198b2d67d0 Fix: Convert image names to lowercase for Docker registry compatibility
Problem: Docker/container registries require lowercase image names, but
Gitea CI variables may contain uppercase letters (e.g., repo name)

Solution:
- Use `tr '[:upper:]' '[:lower:]'` to convert $CI_REGISTRY_IMAGE to lowercase
- Convert $CI_COMMIT_REF_NAME (branch name) to lowercase as well
- Apply conversion in both build and deploy stages
- Also fixed deploy stage to use 'app.image' instead of 'api.image' (unified architecture)

This allows using the repo with any case without needing to rename it.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-17 13:29:37 -05:00

2.3 KiB