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