From 80b7a1bdf9de9f60ad6a09b323386f763734d9ee Mon Sep 17 00:00:00 2001 From: Edgar Date: Sun, 11 Dec 2022 13:46:12 +0100 Subject: [PATCH] :bug: Fixed ubuntu CI downloading windows cache --- .github/workflows/build-game.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-game.yml b/.github/workflows/build-game.yml index f06f5e4764..c9a2cb0a17 100644 --- a/.github/workflows/build-game.yml +++ b/.github/workflows/build-game.yml @@ -15,7 +15,7 @@ jobs: - name: Cache conan uses: actions/cache@v3 with: - key: conan-${{ hashFiles('cmake/DependenciesConfig.cmake') }} + key: conan-ubuntu-${{ hashFiles('cmake/DependenciesConfig.cmake') }} path: ~/.conan/ - name: Install dependencies @@ -98,7 +98,7 @@ jobs: - name: Cache conan packages uses: actions/cache@v3 with: - key: conan-${{ hashFiles('cmake/DependenciesConfig.cmake') }} + key: conan-windows-${{ hashFiles('cmake/DependenciesConfig.cmake') }} path: ~/.conan - name: Enable Developer Command Prompt