From 5c0465fc3f48b173523945e37e99b3346bc746be Mon Sep 17 00:00:00 2001 From: Diego Date: Mon, 18 Nov 2024 14:50:58 -0500 Subject: [PATCH] fix CI cache key issue --- .github/workflows/arbitrator-ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/arbitrator-ci.yml b/.github/workflows/arbitrator-ci.yml index fb9e85f280..44438e0433 100644 --- a/.github/workflows/arbitrator-ci.yml +++ b/.github/workflows/arbitrator-ci.yml @@ -146,13 +146,9 @@ jobs: if: steps.cache-cbrotli.outputs.cache-hit != 'true' uses: mymindstorm/setup-emsdk@v12 with: - # Make sure to set a version number! version: 3.1.6 - # This is the name of the cache folder. - # The cache folder will be placed in the build directory, - # so make sure it doesn't conflict with anything! - actions-cache-folder: "emsdk-cache" - no-cache: true + actions-cache-folder: "emsdk-cache-${{ github.run_id }}" + no-cache: false - name: Build cbrotli-wasm if: steps.cache-cbrotli.outputs.cache-hit != 'true'