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 0609f09 commit 61eb8c6Copy full SHA for 61eb8c6
README.md
@@ -112,21 +112,19 @@ jobs:
112
113
- uses: pnpm/action-setup@v2
114
name: Install pnpm
115
- id: pnpm-install
116
with:
117
version: 7
118
run_install: false
119
120
- name: Get pnpm store directory
121
- id: pnpm-cache
122
shell: bash
123
run: |
124
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
+ echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
125
126
- uses: actions/cache@v3
127
name: Setup pnpm cache
128
129
- path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
+ path: ${{ env.STORE_PATH }}
130
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
131
restore-keys: |
132
${{ runner.os }}-pnpm-store-
0 commit comments