From b0d29208c562b0b4e8b20d6bd241e16eeef5cbe3 Mon Sep 17 00:00:00 2001 From: Vijay Gojiya Date: Tue, 25 Jun 2024 00:22:12 +0530 Subject: [PATCH] fixed pipeline --- .github/workflows/main.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 21f0778..1bedf1b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,12 +47,11 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path - run: echo "dir=$(yarn cache dir)" >> $GITHUB_ENV - + run: echo "::set-output name=dir::$(yarn cache dir)" - uses: actions/cache@v4.0.2 id: yarn-cache with: - path: ${{ env.dir }} + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn-