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 2cc427c commit f6d86dc
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 @@ -58,8 +58,11 @@ jobs:
key: tools-${{ runner.os }}-${{ hashFiles('./build/**') }}
-
name: Get npm cache directory
shell: bash
id: cache-node-dir
run: echo "::set-output name=dir::$(npm config get cache)"
run: |
cacheDir=$(npm config get cache)
echo "dir=$cacheDir" >> $GITHUB_OUTPUT
-
name: Cache Node Modules
id: cache-node
Expand Down

0 comments on commit f6d86dc

Please sign in to comment.