File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1616 steps :
1717 - uses : actions/checkout@v2
1818 - uses : actions/setup-node@v3
19+ with :
20+ # Use NODE_AUTH_TOKEN environment variable to authenticate to this registry.
21+ registry-url : https://registry.npmjs.org/
1922 - name : Setup and publish nightly
2023 run : |
2124 npm whoami
2629 gulp clean
2730 npm publish --tag next
2831 env :
29- NPM_TOKEN : ${{secrets.npm_token}}
32+ NODE_AUTH_TOKEN : ${{secrets.npm_token}}
Original file line number Diff line number Diff line change @@ -15,12 +15,14 @@ jobs:
1515 steps :
1616 - uses : actions/checkout@v2
1717 - uses : actions/setup-node@v3
18+ with :
19+ node-version : 14
1820
1921 - name : Configure git and update package-lock.json
2022 run : |
2123 git config user.email "typescriptbot@microsoft.com"
2224 git config user.name "TypeScript Bot"
23- npm install --package-lock-only
25+ npm install --package-lock-only --ignore-scripts
2426 git add -f package-lock.json
2527 if git commit -m "Update package-lock.json"; then
2628 git push
You can’t perform that action at this time.
0 commit comments