From abd9facd2610d4982a99bee831497f898a5cc54b Mon Sep 17 00:00:00 2001 From: sergerad Date: Tue, 7 Jan 2025 14:03:51 +1300 Subject: [PATCH] Fix repo name --- .github/actions/push/action.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/push/action.yaml b/.github/actions/push/action.yaml index 526e71bd2..fd716be95 100644 --- a/.github/actions/push/action.yaml +++ b/.github/actions/push/action.yaml @@ -39,9 +39,9 @@ runs: if [ -z ${{ inputs.image_tag }} ]; then BUILD_TIMESTAMP="$(date +%s)" SHORT_SHA="$(git rev-parse --short HEAD)" - echo GHCR_TAG="ghcr.io/${{ github.repository }}/immutable-geth/immutable-geth:develop-$BUILD_TIMESTAMP-git.$SHORT_SHA" >> $GITHUB_ENV + echo GHCR_TAG="ghcr.io/${{ github.repository }}/immutable-geth:develop-$BUILD_TIMESTAMP-git.$SHORT_SHA" >> $GITHUB_ENV else - echo GHCR_TAG="ghcr.io/${{ github.repository }}/immutable-geth/immutable-geth:${{ inputs.image_tag }}" >> $GITHUB_ENV + echo GHCR_TAG="ghcr.io/${{ github.repository }}/immutable-geth:${{ inputs.image_tag }}" >> $GITHUB_ENV fi - name: Restore Go mod (pkg) @@ -87,6 +87,6 @@ runs: build-args: ${{ inputs.build-args }} tags: ${{ env.GHCR_TAG }} labels: ${{ steps.meta.outputs.labels }} - cache-from: type=registry,ref=ghcr.io/${{ github.repository }}/immutable-geth/immutable-geth:cache - cache-to: type=registry,ref=ghcr.io/${{ github.repository }}/immutable-geth/immutable-geth:cache,mode=max + cache-from: type=registry,ref=ghcr.io/${{ github.repository }}/immutable-geth:cache + cache-to: type=registry,ref=ghcr.io/${{ github.repository }}/immutable-geth:cache,mode=max provenance: false