From 4139bbbd21d3a6bdbde5c89fb94ebf1c17d6ccc2 Mon Sep 17 00:00:00 2001 From: Claudio W Date: Sat, 14 Sep 2024 13:22:45 +0200 Subject: [PATCH] hotfix: cache path Signed-off-by: Claudio W --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 40c0d1086367..ea6321e64705 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,7 +81,7 @@ jobs: # See here for caching with `yarn` https://github.com/actions/cache/blob/main/examples.md#node---yarn or you can leverage caching with actions/setup-node https://github.com/actions/setup-node path: | ~/.npm - ${{ github.workspace }}/.next/cache + ${{ github.workspace }}/apps/site/.next/cache # Generate a new cache whenever packages or source files change. key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} # If source files changed but packages didn't, rebuild from a prior cache.