From f7e5ddb0dad29e94c7f6b0cf7be0bbda753ed41c Mon Sep 17 00:00:00 2001 From: Tobias Klemp Date: Fri, 2 Jan 2026 00:30:33 +0100 Subject: [PATCH] fix repositry casing --- .gitea/actions/build/action.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/actions/build/action.yml b/.gitea/actions/build/action.yml index 5c4d6af..d6fec5b 100644 --- a/.gitea/actions/build/action.yml +++ b/.gitea/actions/build/action.yml @@ -30,11 +30,18 @@ runs: username: ${{ inputs.REGISTRY_USER }} password: ${{ inputs.REGISTRY_ACCESS_TOKEN }} + - name: Set repository variable + shell: bash + run: | + REPOSITORY=$(echo "${{ gitea.repository }}" | tr '[:upper:]' '[:lower:]') + echo "REPOSITORY=$REPOSITORY" >> $GITHUB_ENV + echo "Repository: $REPOSITORY" + - name: Build and push image uses: docker/build-push-action@v6 with: push: true - tags: ${{ vars.INSTANCE_URL }}/${{ gitea.repository }}:${{ inputs.tag }} + tags: ${{ vars.INSTANCE_URL }}/$REPOSITORY:${{ inputs.tag }} - name: Set output shell: bash