Skip to content

Commit

Permalink
(build) fix set-output syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Oct 25, 2022
1 parent b906175 commit b07a8b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ jobs:
-
name: Get npm cache directory
id: cache-node-dir
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
shell: pwsh
run: |
$cacheDir = $(npm config get cache)
echo "dir=$cacheDir" >> $GITHUB_OUTPUT
-
name: Cache Node Modules
id: cache-node
Expand Down

0 comments on commit b07a8b9

Please sign in to comment.