From 2b888712b7cbe5364d9e8aaf37f678b70ac195f6 Mon Sep 17 00:00:00 2001 From: "Marcus A." Date: Tue, 7 Apr 2026 23:43:33 +0000 Subject: [PATCH] fix: use github.repository instead of gitea.repository for image tagging The gitea.repository context was empty in the CI environment, causing invalid Docker image references like 'registry/:'. Switching to github.repository ensures the repo name is populated and tags are valid. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index ea5cf53..e0e8cec 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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