From 6e7f4cd4a88980955bceff4ddcd8104b31a2ca6a Mon Sep 17 00:00:00 2001 From: ammnt Date: Sun, 8 Sep 2024 14:48:06 +0300 Subject: [PATCH] changed: disable caching because of error --- .github/workflows/build.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bbb8e46..7d7447d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,19 +23,19 @@ jobs: uses: actions/setup-node@v4.0.3 with: node-version: 20 - cache: "npm" - - - name: Get yarn cache directory🗑️ - id: yarn-cache-dir - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - - - uses: actions/cache@v4.0.2 - id: yarn-cache - with: - path: ${{ steps.yarn-cache-dir.outputs.dir }} - key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} - restore-keys: | - ${{ runner.os }}-yarn- + # cache: "npm" + + # - name: Get yarn cache directory🗑️ + # id: yarn-cache-dir + # run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + + # - uses: actions/cache@v4.0.2 + # id: yarn-cache + # with: + # path: ${{ steps.yarn-cache-dir.outputs.dir }} + # key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} + # restore-keys: | + # ${{ runner.os }}-yarn- - name: Install yarn and run hostlist-compiler⛓️ # if: steps.yarn-cache.outputs.cache-hit != 'true'