From 451738e32b026b7b3e93a3c732e99427ef61add0 Mon Sep 17 00:00:00 2001 From: Dimitri Huisman Date: Wed, 19 Oct 2022 11:35:57 +0000 Subject: [PATCH] We want the function result. Not the function statement. --- .github/workflows/build_test_deploy.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build_test_deploy.yml b/.github/workflows/build_test_deploy.yml index 8aee5c5f..7b7c357a 100644 --- a/.github/workflows/build_test_deploy.yml +++ b/.github/workflows/build_test_deploy.yml @@ -111,9 +111,9 @@ jobs: uses: actions/cache@v3 with: path: ${{ runner.temp }}/cache/base - key: mailu-base-${{ inputs.architecture }}-hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt')-${{ github.run_id }} + key: mailu-base-${{ inputs.architecture }}-${{ hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') }}-${{ github.run_id }} restore-keys: | - mailu-base-${{ inputs.architecture }}-hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') + mailu-base-${{ inputs.architecture }}-${{hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') }} - name: Set up QEMU uses: docker/setup-qemu-action@v2 - uses: crazy-max/ghaction-github-runtime@v2 @@ -169,9 +169,9 @@ jobs: uses: actions/cache@v3 with: path: ${{ runner.temp }}/cache/base - key: mailu-base-${{ inputs.architecture }}-hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt')-${{ github.run_id }} + key: mailu-base-${{ inputs.architecture }}-${{ hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') }}-${{ github.run_id }} restore-keys: | - mailu-base-${{ inputs.architecture }}-hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') + mailu-base-${{ inputs.architecture }}-${{ hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') }} - name: Configure actions/cache@v3 action for storing build cache in the ${{ runner.temp }}/cache folder uses: actions/cache@v3 with: @@ -235,9 +235,9 @@ jobs: uses: actions/cache@v3 with: path: ${{ runner.temp }}/cache/base - key: mailu-base-${{ inputs.architecture }}-hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt')-${{ github.run_id }} + key: mailu-base-${{ inputs.architecture }}-${{ hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') }}-${{ github.run_id }} restore-keys: | - mailu-base-${{ inputs.architecture }}-hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') + mailu-base-${{ inputs.architecture }}-${{ hashFiles('core/base/Dockerfile','core/base/requirements-prod.txt') }} - name: Configure actions/cache@v3 action for storing build cache in the ${{ runner.temp }}/cache folder uses: actions/cache@v3 with: