This commit is contained in:
leehk 2025-04-15 16:26:45 +08:00
parent e9d1cfe6a2
commit e6ed7ef5dd

View File

@ -83,14 +83,6 @@ jobs:
echo "Attempting to pull latest image for cache: ${{ 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
if: inputs.intermediate_container != ''
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 }} || true
- name: Build Final Image
run: |
echo "Building final image without intermediate cache..."