aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2024-01-08 09:54:34 +0100
committerLoïc Hoguin <[email protected]>2024-01-08 09:54:34 +0100
commite0adf0a19c6e9516b2078bd5dd4d288cb1a03e5e (patch)
tree096821fc5e388c7a4c44fd8bb053b2c166b7e279
parent6ef79ae410d9bce15a361303ec283f6381965404 (diff)
downloadcowboy-e0adf0a19c6e9516b2078bd5dd4d288cb1a03e5e.tar.gz
cowboy-e0adf0a19c6e9516b2078bd5dd4d288cb1a03e5e.tar.bz2
cowboy-e0adf0a19c6e9516b2078bd5dd4d288cb1a03e5e.zip
Don't fail actions if master cache doesn't exist
-rw-r--r--.github/workflows/ci.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index f213e3a..f20a63f 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 }}