From f6313cd6b2722ee56ab426ecf94769e50407d8c2 Mon Sep 17 00:00:00 2001 From: Yuki Furuta Date: Tue, 11 Feb 2025 10:20:26 -0800 Subject: [PATCH] Use || true instead of continue-on-error --- .github/workflows/build.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 02477738..f228f9c8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -188,8 +188,7 @@ jobs: - name: Delete old ccache if: always() && steps.restore-ccache.outputs.cache-hit - continue-on-error: true - run: gh cache delete "${{ steps.restore-ccache.outputs.cache-primary-key }}" + run: gh cache delete "${{ steps.restore-ccache.outputs.cache-primary-key }}" || true env: GH_TOKEN: ${{ github.token }} - name: Store ccache