File tree Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Expand file tree Collapse file tree 2 files changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ name: 'Build & Deploy - Beta'
1111on :
1212 push :
1313 branches :
14- - main
1514 - master
1615
1716permissions : read-all
@@ -36,15 +35,15 @@ jobs:
3635 - uses : actions/checkout@v4
37363837 with :
39- node-version : " 18.x"
40- registry-url : " https://registry.npmjs.org"
38+ node-version : 18.x
39+ registry-url : https://registry.npmjs.org
4140 scope : rubenhalman
4241 - run : npm ci
4342 - run : |
44- git config --global user.name nvuillam
45- git config --global user.email [email protected] 43+ git config --global user.name $USER_NAME
44+ git config --global user.email $USER_EMAIL
4645 - run : BETAID=$(date '+%Y%m%d%H%M') && npm version prerelease --preid="beta$BETAID"
4746 shell : bash
4847 - run : npm publish --tag beta
4948 env :
50- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
49+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKENX }}
Original file line number Diff line number Diff line change @@ -34,13 +34,13 @@ jobs:
3434 # Setup .npmrc file to publish to npm
35353636 with :
37- node-version : " 18.x"
38- registry-url : " https://registry.npmjs.org"
37+ node-version : 18.x
38+ registry-url : https://registry.npmjs.org
3939 scope : rubenhalman
4040 - run : npm ci
4141 - run : |
42- git config --global user.name nvuillam
43- git config --global user.email [email protected] 42+ git config --global user.name $USER_NAME
43+ git config --global user.email $USER_EMAIL
4444 - run : npm publish
4545 env :
46- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
46+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKENX }}
You can’t perform that action at this time.
0 commit comments