We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2ed49cb + 61eb8c6 commit 0b715c7Copy full SHA for 0b715c7
README.md
@@ -116,21 +116,19 @@ jobs:
116
117
- uses: pnpm/action-setup@v2
118
name: Install pnpm
119
- id: pnpm-install
120
with:
121
version: 7
122
run_install: false
123
124
- name: Get pnpm store directory
125
- id: pnpm-cache
126
shell: bash
127
run: |
128
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
+ echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
129
130
- uses: actions/cache@v3
131
name: Setup pnpm cache
132
133
- path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
+ path: ${{ env.STORE_PATH }}
134
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
135
restore-keys: |
136
${{ runner.os }}-pnpm-store-
0 commit comments