From 4d9b536f1dbc9d77baafa7a58211fed7692701ff Mon Sep 17 00:00:00 2001 From: Andrea Cavalli Date: Sun, 26 Sep 2021 19:45:42 +0200 Subject: [PATCH] Fix cache names --- .github/workflows/platform_natives.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/platform_natives.yaml b/.github/workflows/platform_natives.yaml index 60b059e..8a90466 100644 --- a/.github/workflows/platform_natives.yaml +++ b/.github/workflows/platform_natives.yaml @@ -97,17 +97,17 @@ jobs: uses: actions/cache@v2 with: path: ~/tdlight-java-natives/tdlight-java-natives/.cache - key: ${{ runner.os }}-maven-${{ env.SAFE_ARCH }}-${{ github.sha }} + key: ${{ runner.os }}-packages-${{ env.SAFE_ARCH }}-${{ github.sha }} restore-keys: | - ${{ runner.os }}-maven-${{ env.SAFE_ARCH }}- + ${{ runner.os }}-packages-${{ env.SAFE_ARCH }}- - name: Cache ccache uses: actions/cache@v2 with: path: ~/.ccache - key: ${{ runner.os }}-maven-${{ env.SAFE_ARCH }}-${{ github.sha }} + key: ${{ runner.os }}-ccache-${{ env.SAFE_ARCH }}-${{ github.sha }} restore-keys: | - ${{ runner.os }}-maven-${{ env.SAFE_ARCH }}- + ${{ runner.os }}-ccache-${{ env.SAFE_ARCH }}- - name: Build image if: matrix.usedocker == 'true'