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