fix repositry casing
Some checks failed
CI / build-and-test (push) Failing after 2m45s

This commit is contained in:
Tobias Klemp
2026-01-02 00:30:33 +01:00
parent 96cdd6d0a4
commit f7e5ddb0da

View File

@@ -30,11 +30,18 @@ runs:
username: ${{ inputs.REGISTRY_USER }} username: ${{ inputs.REGISTRY_USER }}
password: ${{ inputs.REGISTRY_ACCESS_TOKEN }} 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 - name: Build and push image
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
push: true push: true
tags: ${{ vars.INSTANCE_URL }}/${{ gitea.repository }}:${{ inputs.tag }} tags: ${{ vars.INSTANCE_URL }}/$REPOSITORY:${{ inputs.tag }}
- name: Set output - name: Set output
shell: bash shell: bash