File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed
Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 2929 - run : sudo apt-get install xvfb
3030 - run : xvfb-run --auto-servernum npm run test:chrome
3131 - run : xvfb-run --auto-servernum npm run test:firefox
32+
33+ - name : Publish to npm dry-run
34+ env :
35+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
36+ run : |
37+ echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
38+ npm publish --dry-run
39+
40+ - name : Publish to npm
41+ if : github.ref == 'refs/heads/master' && github.event_name == 'push'
42+ env :
43+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
44+ run : |
45+ echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
46+ npm publish
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ npm i @puremvc/puremvc-js-multicore-framework
2424* [ React Native] ( https://en.wikipedia.org/wiki/React_Native )
2525
2626## Status
27- Production - [ Version 2.0.8 ] ( https://github.com/PureMVC/puremvc-js-multicore-framework/blob/master/VERSION )
27+ Production - [ Version 2.0.9 ] ( https://github.com/PureMVC/puremvc-js-multicore-framework/blob/master/VERSION )
2828
2929#### Documentation
3030- https://jsdoc.app/about-commandline.html
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Release Date: 9/4/24
44 Platform: JavaScript
55 Version: 2
66 Revision: 0
7- Minor: 8
7+ Minor: 9
88 Authors: Saad Shams <saad.shams@puremvc.org>
99 : David Foley <david.foley@puremvc.org>
1010 : Cliff Hall <cliff.hall@puremvc.org>
@@ -18,3 +18,4 @@ Release Date: 9/4/24
18182.0.6 - NPM package bundling the ESM/CommonJS support
19192.0.7 - Finally? NPM bundling
20202.0.8 - CI/CD Pipeline
21+ 2.0.9 - CI/CD Integrating Automated Tokens
Original file line number Diff line number Diff line change 11{
22 "name" : " @puremvc/puremvc-js-multicore-framework" ,
3- "version" : " 2.0.8 " ,
3+ "version" : " 2.0.9 " ,
44 "description" : " PureMVC MultiCore Framework for JavaScript" ,
55 "type" : " module" ,
66 "main" : " bin/cjs/index.cjs" ,
You can’t perform that action at this time.
0 commit comments