diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-10 12:12:25 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-10 12:12:25 -0600 |
commit | eb1d4b2340e46d6fe944037b3a37ce6674c2b2bd (patch) | |
tree | 838e2395417e8e13551f30fa89c3985da20a2de6 | |
parent | 323b2d53d72d741e0665e96910370c5a36df643e (diff) | |
parent | 9923268d74f7c106fba119d88ccaf53de387923d (diff) | |
download | redot-engine-eb1d4b2340e46d6fe944037b3a37ce6674c2b2bd.tar.gz |
Merge pull request #98965 from AThousandShips/emsdk_cache_fix
[Web] Don't cache emsdk
-rw-r--r-- | .github/workflows/web_builds.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/web_builds.yml b/.github/workflows/web_builds.yml index 8e30c99fbc..ec57fa2f0d 100644 --- a/.github/workflows/web_builds.yml +++ b/.github/workflows/web_builds.yml @@ -8,7 +8,6 @@ env: GODOT_BASE_BRANCH: master SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no use_closure_compiler=yes strict_checks=yes EM_VERSION: 3.1.64 - EM_CACHE_FOLDER: emsdk-cache concurrency: group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-web @@ -46,8 +45,7 @@ jobs: uses: mymindstorm/setup-emsdk@v14 with: version: ${{ env.EM_VERSION }} - actions-cache-folder: ${{ env.EM_CACHE_FOLDER }} - cache-key: emsdk-${{ matrix.cache-name }}-${{ env.GODOT_BASE_BRANCH }}-${{ github.ref }}-${{ github.sha }} + no-cache: true - name: Verify Emscripten setup run: | |