From 8444d5709834fa5d50ed2201fa04f50890ecc0d2 Mon Sep 17 00:00:00 2001 From: Steven Serrata <9343811+sserrata@users.noreply.github.com> Date: Wed, 13 Nov 2024 13:31:53 -0500 Subject: [PATCH] Update deploy-live.yml temporarily disable caching of dependencies and docusaurus build Signed-off-by: Steven Serrata <9343811+sserrata@users.noreply.github.com> --- .github/workflows/deploy-live.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy-live.yml b/.github/workflows/deploy-live.yml index 247d999ed..af0faaa4c 100644 --- a/.github/workflows/deploy-live.yml +++ b/.github/workflows/deploy-live.yml @@ -25,21 +25,21 @@ jobs: id: yarn-cache run: echo "YARN_CACHE_DIR=$(yarn cache dir)" >> "${GITHUB_OUTPUT}" - - name: Cache dependencies - uses: actions/cache@v4 - with: - path: ${{ steps.yarn-cache.outputs.YARN_CACHE_DIR }} - key: ${{ runner.os }}-pandev-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-pandev- + # - name: Cache dependencies + # uses: actions/cache@v4 + # with: + # path: ${{ steps.yarn-cache.outputs.YARN_CACHE_DIR }} + # key: ${{ runner.os }}-pandev-${{ hashFiles('**/yarn.lock') }} + # restore-keys: | + # ${{ runner.os }}-pandev- - - name: Cache docusaurus build - uses: actions/cache@v4 - with: - path: node_modules/.cache/webpack - key: pandev-live-${{ github.run_id }} - restore-keys: | - pandev-live + # - name: Cache docusaurus build + # uses: actions/cache@v4 + # with: + # path: node_modules/.cache/webpack + # key: pandev-live-${{ github.run_id }} + # restore-keys: | + # pandev-live - name: Install dependencies run: yarn --prefer-offline