From 708e97f15b2928d1a33b63fadab23590af59a42f Mon Sep 17 00:00:00 2001 From: ytshih Date: Wed, 23 Apr 2025 09:36:40 +0800 Subject: [PATCH] Fix: change GITEA_REPO to GITHUB_REPO --- action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yaml b/action.yaml index d1ffdcd..026e89b 100644 --- a/action.yaml +++ b/action.yaml @@ -76,7 +76,7 @@ runs: with: context: workflow images: | - ${{ inputs.push-registry }}/${{ env.GITEA_REPO }} + ${{ inputs.push-registry }}/${{ env.GITHUB_REPO }} 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.GITEA_REPO }}/cache + type:registry,ref=${{ inputs.push-registry }}/${{ env.GITHUB_REPO }}/cache cache-to: | - type:registry,ref=${{ inputs.push-registry }}/${{ env.GITEA_REPO }}/cache + type:registry,ref=${{ inputs.push-registry }}/${{ env.GITHUB_REPO }}/cache