diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-10-21 11:19:16 -0400 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-10-21 17:41:13 +0100 |
commit | cff39734f1f0651b1d42feeded3f20fedea95b22 (patch) | |
tree | a2acc9ad64cbcb74fd5bf421d410d5f41fd9722d /.github/workflows | |
parent | bf80dea39cf183665d2b949a48390ba4f0e82d08 (diff) | |
download | serenity-cff39734f1f0651b1d42feeded3f20fedea95b22.zip |
CI: Use correct CLDR cache path on GitHub Actions
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cmake.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 45528fce3d..68e1d84823 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -130,7 +130,7 @@ jobs: # TODO: Change the version to the released version when https://github.com/actions/cache/pull/489 (or 571) is merged. uses: actions/cache@03e00da99d75a2204924908e1cca7902cafce66b with: - path: ${{ github.workspace }}/Build/CLDR + path: ${{ github.workspace }}/Build/${{ matrix.arch }}/CLDR key: UnicodeLocale-${{ hashFiles('Meta/CMake/unicode_data.cmake') }} - name: Create build environment with extra debug options # Build the entire project with all available debug options turned on, to prevent code rot. |