diff options
| author | seth <[email protected]> | 2023-12-25 05:11:49 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-25 05:12:09 -0500 |
| commit | a21e16ff8519981610d4f3634828d20d639110e7 (patch) | |
| tree | 1e2cdf7469724089e68c53a30ae097782a16558c | |
| parent | 0cc0ada5d44ade6cab2e9220f7993aaf77985e1b (diff) | |
actions: actually exit when drvs are found in cache
| -rw-r--r-- | .github/workflows/ci.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f8e429e..b1a1b25 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -64,7 +64,8 @@ jobs: if nix eval --raw .#"$JOBS".${{ matrix.attr }} \ | cut -c12-43 \ | xargs -I {} curl -f "$url"/{}.narinfo &> /dev/null; then - echo ${{ matrix.attr }} is already cached in $url! + echo ${{ matrix.attr }} is already cached at $url! + exit 0 fi done |
