mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 14:28:42 +00:00
ci: Fix cache-cleanup.yml
non-zero exit status (#1136)
ci: Fix `cache-cleanup.yml` `cut` non-zero exit status Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
abf5a8e842
commit
e62049d59d
1 changed files with 1 additions and 1 deletions
2
.github/workflows/cache-cleanup.yml
vendored
2
.github/workflows/cache-cleanup.yml
vendored
|
@ -31,7 +31,7 @@ jobs:
|
|||
done
|
||||
)
|
||||
# Remove merge queue cache, since they cannot be reused
|
||||
gh actions-cache list -L 100 | cut -f 3 | grep 'gh-readonly-queue' | sort -u | (
|
||||
gh actions-cache list -L 100 | cut -f 3 | (grep 'gh-readonly-queue' || true) | sort -u | (
|
||||
while IFS='$\n' read -r branch; do
|
||||
BRANCH="$branch" ./cleanup-cache.sh
|
||||
done
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue