trying a fix for the yaml syntax error

This commit is contained in:
Joseph Flinn 2020-12-21 23:46:44 +00:00
parent 336c41c054
commit 38d27feefa
1 changed files with 2 additions and 1 deletions

View File

@ -160,7 +160,8 @@ jobs:
steps:
- name: Setup NPM
shell: pwsh
run: "//registry.npmjs.org/:_authToken=${env:NPM_TOKEN}" | Out-File ".npmrc" -Encoding UTF8
run: |
"//registry.npmjs.org/:_authToken=${env:NPM_TOKEN}" | Out-File ".npmrc" -Encoding UTF8
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}