diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 58e1c46..23e183e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,13 +37,14 @@ jobs: run_install: false - name: Get pnpm store directory + id: pnpm-store shell: bash - run: echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV + run: echo "path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT - name: Setup pnpm cache uses: actions/cache@v3 with: - path: ${{ env.STORE_PATH }} + path: ${{ steps.pnpm-store.outputs.path }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} restore-keys: ${{ runner.os }}-pnpm-store-