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
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user