maybe
Some checks failed
CI / build-and-test (push) Failing after 2m54s

This commit is contained in:
Tobias Klemp
2026-01-02 00:52:53 +01:00
parent 0db1f6432c
commit 4c8e159236

View File

@@ -32,16 +32,16 @@ runs:
- name: Set repository variable
shell: bash
id: repo
run: |
REPOSITORY=$(echo "${{ gitea.repository }}" | tr '[:upper:]' '[:lower:]')
echo "REPOSITORY=$REPOSITORY" >> $GITHUB_ENV
echo "Repository: $REPOSITORY"
echo "name=$REPOSITORY" >> $GITHUB_OUTPUT
- name: Build and push image
uses: docker/build-push-action@v6
with:
push: true
tags: '${{ vars.INSTANCE_URL }}/$REPOSITORY:${{ inputs.tag }}'
tags: '${{ vars.INSTANCE_URL }}/${{ steps.repo.outputs.name }}:${{ inputs.tag }}'
- name: Set output
shell: bash