From 5afc41b586006a549942cfddf46ef8850b390035 Mon Sep 17 00:00:00 2001 From: ytshih Date: Wed, 23 Apr 2025 09:41:41 +0800 Subject: [PATCH] Fix: change GITHUB_REPO to GITEA_REPOSITORY --- action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yaml b/action.yaml index 026e89b..673e677 100644 --- a/action.yaml +++ b/action.yaml @@ -76,7 +76,7 @@ runs: with: context: workflow images: | - ${{ inputs.push-registry }}/${{ env.GITHUB_REPO }} + ${{ inputs.push-registry }}/${{ env.GITEA_REPOSITORY }} tags: | type=ref,event=branch type=ref,event=tag @@ -94,6 +94,6 @@ runs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: | - type:registry,ref=${{ inputs.push-registry }}/${{ env.GITHUB_REPO }}/cache + type:registry,ref=${{ inputs.push-registry }}/${{ env.GITEA_REPOSITORY }}/cache cache-to: | - type:registry,ref=${{ inputs.push-registry }}/${{ env.GITHUB_REPO }}/cache + type:registry,ref=${{ inputs.push-registry }}/${{ env.GITEA_REPOSITORY }}/cache