Skip to content

Commit

Permalink
fix(ci): node auth token had extra character
Browse files Browse the repository at this point in the history
Fixing extra `$`
  • Loading branch information
jasonschroeder-sfdc committed Oct 19, 2022
1 parent 72da605 commit c387311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: $${{ secrets.NPM_TOKEN }} # used by setup-node@v3 action
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # used by setup-node@v3 action

0 comments on commit c387311

Please sign in to comment.