We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ed37e7 commit 26104c5Copy full SHA for 26104c5
1 file changed
.github/workflows/preview-deploy.yml
@@ -34,14 +34,15 @@ jobs:
34
version: 9
35
36
- name: Get pnpm store directory
37
+ id: pnpm-cache
38
shell: bash
39
run: |
- echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
40
+ echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
41
42
- name: Setup pnpm cache
43
uses: actions/cache@v4
44
with:
- path: ${{ env.STORE_PATH }}
45
+ path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
46
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
47
restore-keys: |
48
${{ runner.os }}-pnpm-store-
0 commit comments