From 31599cdd26631c57bef64dc2ea480a11ff17b1f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Tue, 28 Feb 2023 07:38:28 -0700 Subject: [PATCH] Fixes prod build hashing https://github.com/actions/cache/issues/1125#issuecomment-1447688501 --- .github/actions/cache-build/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/cache-build/action.yml b/.github/actions/cache-build/action.yml index 2899075b14..b892ad544c 100644 --- a/.github/actions/cache-build/action.yml +++ b/.github/actions/cache-build/action.yml @@ -13,7 +13,7 @@ runs: env: cache-name: prod-build key-1: ${{ inputs.node_version }}-${{ hashFiles('yarn.lock') }} - key-2: ${{ hashFiles('**.[jt]s', '**.[jt]sx') }} + key-2: ${{ hashFiles('**/**.[jt]s', '**/**.[jt]sx') }} key-3: ${{ github.event.pull_request.number || github.ref }} with: path: |