File tree Expand file tree Collapse file tree 3 files changed +3
-30
lines changed Expand file tree Collapse file tree 3 files changed +3
-30
lines changed Original file line number Diff line number Diff line change 2828 - run : npm ci
2929 - run : npm run build --if-present
3030 - run : npm test
31-
32- publish :
33- runs-on : ubuntu-latest
34- needs : build # Wait for build to complete
35- if : github.ref == 'refs/heads/main' && github.event_name == 'push'
36-
37- steps :
38- - uses : actions/checkout@v4
39- - name : Use Node.js 20.x
40- uses : actions/setup-node@v4
41- with :
42- node-version : " 20.x"
43- cache : " npm"
44- - run : npm install
45- - run : npm run build
46-
47- - name : Authenticate with npm
48- env :
49- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
50- run : echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" > ~/.npmrc
51-
52- - name : Run npm publish dry run
53- run : npm run npm:publish:dry-run
54-
55- - name : Publish to npm
56- env :
57- NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
58- run : npm run npm:publish
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ npm i @puremvc/puremvc-typescript-multicore-framework
2424* [ React Native] ( https://en.wikipedia.org/wiki/React_Native )
2525
2626## Status
27- Production - [ Version 2.0.7 ] ( https://github.com/PureMVC/puremvc-typescript-multicore-framework/blob/master/VERSION )
27+ Production - [ Version 2.0.8 ] ( https://github.com/PureMVC/puremvc-typescript-multicore-framework/blob/master/VERSION )
2828
2929## License
3030* PureMVC MultiCore Framework for TypeScript - Copyright © 2025 [ Saad Shams] ( https://www.linkedin.com/in/muizz )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Release Date: 2/27/25
44 Platform: TypeScript
55 Version: 2
66 Revision: 0
7- Minor: 7
7+ Minor: 8
88 Authors: Saad Shams <saad.shams@puremvc.org>
99--------------------------------------------------------------------------
10102.0.0 - Brand new implementation of ported code, equivalent to AS3 MultiCore Version 1.0.5.
@@ -16,3 +16,4 @@ Release Date: 2/27/25
16162.0.5 - Fix package.json for importing types properly
17172.0.6 - Add test coverage reporting
18182.0.7 - Increase test coverage
19+ 2.0.8 - Remove auto-publish to npm. It makes it difficult to improve tests without upgrading version
You can’t perform that action at this time.
0 commit comments