We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46cdd02 + 509ba57 commit 8b8245eCopy full SHA for 8b8245e
1 file changed
.github/workflows/build-and-deploy-site.yml
@@ -17,6 +17,17 @@ jobs:
17
with:
18
fetch-depth: 1
19
20
+ - name: Cache Gatsby .cache and public folders
21
+ uses: actions/cache@v4
22
+ id: gatsby-cache
23
+ with:
24
+ path: |
25
+ public
26
+ .cache
27
+ key: ${{ runner.os }}-gatsby-${{ hashFiles('**/package-lock.json') }}
28
+ restore-keys: |
29
+ ${{ runner.os }}-gatsby-
30
+
31
- name: Install and Build 🔧
32
run: |
33
npm install --legacy-peer-deps
0 commit comments