From 3f5b911c1e5eb64f0df8371c2a2be224ee3ef35c Mon Sep 17 00:00:00 2001 From: leehk Date: Tue, 15 Apr 2025 15:27:10 +0800 Subject: [PATCH] update --- .github/workflows/template_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/template_build.yml b/.github/workflows/template_build.yml index d61fba5..49c5511 100644 --- a/.github/workflows/template_build.yml +++ b/.github/workflows/template_build.yml @@ -89,7 +89,7 @@ jobs: continue-on-error: true # Mimics '|| true' run: | echo "Attempting to pull latest image for cache: ${{ steps.tags.outputs.image_repo_path }}:latest" - docker pull ${{ steps.tags.outputs.image_repo_path }}:latest + docker pull ${{ steps.tags.outputs.image_repo_path }}:latest || true - name: Pull Intermediate Image for Cache # Pulls the intermediate tag if specified and exists @@ -97,7 +97,7 @@ jobs: continue-on-error: true # Mimics '|| true' run: | echo "Attempting to pull intermediate image for cache: ${{ steps.tags.outputs.image_repo_path }}:${{ inputs.intermediate_container }}" - docker pull ${{ steps.tags.outputs.image_repo_path }}:${{ inputs.intermediate_container }} + docker pull ${{ steps.tags.outputs.image_repo_path }}:${{ inputs.intermediate_container }} || true - name: Build Intermediate Image # Builds the intermediate target if specified