fix: use github.repository instead of gitea.repository for image tagging
Some checks failed
Build and Push Sandbox Base Image / build (push) Failing after 2m1s

The gitea.repository context was empty in the CI environment, causing invalid Docker image references like 'registry/:<sha>'. Switching to github.repository ensures the repo name is populated and tags are valid.
This commit is contained in:
Marcus A.
2026-04-07 23:43:33 +00:00
parent 995403bf11
commit 2b888712b7

View File

@@ -26,7 +26,7 @@ jobs:
- name: Set image name (lowercase)
id: meta
run: |
echo "repo=${{ toLower(gitea.repository) }}" >> $GITHUB_OUTPUT
echo "repo=${{ toLower(github.repository) }}" >> $GITHUB_OUTPUT
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3