diff options
author | Loïc Hoguin <[email protected]> | 2024-01-08 09:15:29 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2024-01-08 09:15:29 +0100 |
commit | a8f31f3f0274f7e5a6b58fa6b6090c3160c4d023 (patch) | |
tree | c2e46e6f226028a8a54884a6be3ce1a7c4e97fb4 | |
parent | 3de54635577cfacf4d72d1793b25832c412239bf (diff) | |
download | ranch-a8f31f3f0274f7e5a6b58fa6b6090c3160c4d023.tar.gz ranch-a8f31f3f0274f7e5a6b58fa6b6090c3160c4d023.tar.bz2 ranch-a8f31f3f0274f7e5a6b58fa6b6090c3160c4d023.zip |
Don't fail actions if master cache doesn't exist
-rw-r--r-- | .github/workflows/ci.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8ffd868..c82eaa9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,8 +19,8 @@ jobs: if: ${{ github.event_name == 'schedule' }} run: | gh extension install actions/gh-actions-cache - gh actions-cache delete Linux-X64-Erlang-master -R $REPO --confirm - gh actions-cache delete macOS-X64-Erlang-master -R $REPO --confirm + gh actions-cache delete Linux-X64-Erlang-master -R $REPO --confirm || true + gh actions-cache delete macOS-X64-Erlang-master -R $REPO --confirm || true env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} REPO: ${{ github.repository }} |