From 7ac961fab642ae035cb8b24dd15d5463c72ace4c Mon Sep 17 00:00:00 2001 From: coltborg Date: Tue, 11 Jun 2024 15:01:30 -0500 Subject: [PATCH] Stop caching for now --- .github/workflows/deploy-to-github-pages.yml | 26 ++++++++++---------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/deploy-to-github-pages.yml b/.github/workflows/deploy-to-github-pages.yml index f43bdf5..4242929 100644 --- a/.github/workflows/deploy-to-github-pages.yml +++ b/.github/workflows/deploy-to-github-pages.yml @@ -21,19 +21,19 @@ jobs: with: node-version: "18" - - name: Persist npm cache - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- - - - name: Persist Eleventy .cache - uses: actions/cache@v3 - with: - path: ./.cache - key: ${{ runner.os }}-eleventy-fetch-cache +# - name: Persist npm cache +# uses: actions/cache@v3 +# with: +# path: ~/.npm +# key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} +# restore-keys: | +# ${{ runner.os }}-node- + +# - name: Persist Eleventy .cache +# uses: actions/cache@v3 +# with: +# path: ./.cache +# key: ${{ runner.os }}-eleventy-fetch-cache - run: npm install