From fcfc773d878f4b005712226733cbb56e2b8f69d4 Mon Sep 17 00:00:00 2001 From: Tobias Klemp Date: Sat, 3 Jan 2026 18:00:39 +0100 Subject: [PATCH] fix build image url output casing --- .gitea/actions/build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/actions/build/action.yml b/.gitea/actions/build/action.yml index 6785896..e98ea52 100644 --- a/.gitea/actions/build/action.yml +++ b/.gitea/actions/build/action.yml @@ -46,4 +46,4 @@ runs: - name: Set output shell: bash run: | - echo "image_url=${{ vars.INSTANCE_URL }}/${{ gitea.repository }}:${{ inputs.tag }}" >> $GITHUB_OUTPUT + echo "image_url=${{ vars.INSTANCE_URL }}/${{ steps.repo.outputs.name }}:${{ inputs.tag }}" >> $GITHUB_OUTPUT