File tree 3 files changed +3
-30
lines changed
3 files changed +3
-30
lines changed Original file line number Diff line number Diff line change 28
28
- run : npm ci
29
29
- run : npm run build --if-present
30
30
- 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
24
24
* [ React Native] ( https://en.wikipedia.org/wiki/React_Native )
25
25
26
26
## 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 )
28
28
29
29
## License
30
30
* 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
4
4
Platform: TypeScript
5
5
Version: 2
6
6
Revision: 0
7
- Minor: 7
7
+ Minor: 8
8
8
Authors: Saad Shams <
[email protected] >
9
9
--------------------------------------------------------------------------
10
10
2.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
16
16
2.0.5 - Fix package.json for importing types properly
17
17
2.0.6 - Add test coverage reporting
18
18
2.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