From bc06d7ef6d86f4e3b7678272428605eda4fdc0a0 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Mon, 26 Jun 2023 18:26:49 -0600 Subject: [PATCH] use correct var name --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bebf9ee..43cac6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -147,11 +147,11 @@ jobs: uses: actions/cache@v3 with: path: NimBinaries - key: ${{ inputs.os }}-${{ inputs.cpu }}-nim-${{ matrix.branch }}-cache-${{ env.cache_nonce }}-${{ github.run_id }} - restore-keys: ${{ inputs.os }}-${{ inputs.cpu }}-nim-${{ matrix.branch }}-cache-${{ env.cache_nonce }} + key: ${{ matrix.os }}-${{ matrix.cpu }}-nim-${{ matrix.branch }}-cache-${{ env.cache_nonce }}-${{ github.run_id }} + restore-keys: ${{ matrix.os }}-${{ matrix.cpu }}-nim-${{ matrix.branch }}-cache-${{ env.cache_nonce }} - name: Set NIM_COMMIT - shell: ${{ inputs.shell }} {0} + shell: ${{ matrix.shell }} {0} run: echo "NIM_COMMIT=${{ matrix.branch }}" >> ${GITHUB_ENV} - name: Run tests