Skip to content

Commit

Permalink
Fix quote escaping for YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
alnoki committed Jun 18, 2024
1 parent 17286c0 commit 88f7d15
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/deploy-doc-site.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,16 @@ jobs:
-
id: 'pnpm-cache'
name: 'Get pnpm store directory'
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
run: 'echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT'
shell: 'bash'
-
name: 'Setup pnpm cache'
uses: 'actions/cache@v3'
with:
key: '${{ runner.os }}-pnpm-store-${{ hashFiles("**/pnpm-lock.yaml") }}'
key: |
${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
path: '${{ steps.pnpm-cache.outputs.STORE_PATH }}'
restore-keys: |
${{ runner.os }}-pnpm-store-
restore-keys: '${{ runner.os }}-pnpm-store-'
-
name: 'Install dependencies'
run: 'pnpm install --frozen-lockfile'
Expand Down

0 comments on commit 88f7d15

Please sign in to comment.