Skip to content

Commit

Permalink
CI: Don't fail CI job when list of changed files is empty (#8066)
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy authored Feb 14, 2024
1 parent 381328e commit b69b799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/ci-incr-build-cache-save/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
-path './modules-*/files-*/*' -or \
-path './modules-*/files-*/*' -or \
-path './build-cache-*/*' \
')' | grep -v '[.]lock$' > ~/ci-gradle-caches-diff
')' | grep -v '[.]lock$' > ~/ci-gradle-caches-diff || true
echo "Identified $(wc -l < ~/ci-gradle-caches-diff) changed/added files in caches/"
# Only call 'tar', if there is some difference
Expand Down

0 comments on commit b69b799

Please sign in to comment.