Commit 547c6ed 1 parent d53c0a6 commit 547c6ed Copy full SHA for 547c6ed
File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -58,16 +58,19 @@ jobs:
58
58
- name : Build
59
59
run : npm run build
60
60
61
+ - name : Login to NPM
62
+ run : npm set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }}
63
+
61
64
- name : Pre-Release
62
65
if : ${{ github.event.inputs.preReleaseFlavor != '' }}
63
66
run : npm run release:ci -- ${{ github.event.inputs.releaseType }} --preRelease=${{ github.event.inputs.preReleaseFlavor }}
64
67
env :
65
- NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
66
- GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
68
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
69
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
67
70
68
71
- name : Release
69
72
if : ${{ github.event.inputs.preReleaseFlavor == '' }}
70
73
run : npm run release:ci -- ${{ github.event.inputs.releaseType }}
71
74
env :
72
- NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
73
- GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
75
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
76
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments