Skip to content

Commit

Permalink
ci: fix syntax in dependency image check
Browse files Browse the repository at this point in the history
  • Loading branch information
Taepper committed Feb 17, 2025
1 parent 7c2994f commit b3f03fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
- name: Check if dependency image exists
run: |
EXISTS=$(docker manifest inspect \
${{ env.DOCKER_DEPENDENCY_IMAGE_NAME }}:filehash-${{ env.DIR_HASH }}-${{ matrix.arch }} \
> /dev/null 2>&1 && echo "true" || echo "false")
${{ env.DOCKER_DEPENDENCY_IMAGE_NAME }}:filehash-${{ env.DIR_HASH }}-${{ matrix.arch }} > /dev/null 2>&1 &&
echo "true" || echo "false")
echo "CACHE_HIT=$EXISTS" >> $GITHUB_ENV
- name: Build and push dependency image if input files changed
Expand Down

0 comments on commit b3f03fa

Please sign in to comment.