File tree Expand file tree Collapse file tree 3 files changed +49
-4
lines changed
Expand file tree Collapse file tree 3 files changed +49
-4
lines changed Original file line number Diff line number Diff line change 1+ name : Publish
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*.*.*'
7+
8+ jobs :
9+ publish :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : Check out repository
14+ uses : actions/checkout@v4
15+
16+ - name : Install Node.js
17+ uses : actions/setup-node@v4
18+ with :
19+ node-version : 20
20+ registry-url : ' https://registry.npmjs.org'
21+
22+ - name : Update NPM to latest
23+ run : npm install npm@latest -g
24+
25+ - name : Print Node.js and NPM version
26+ run : |
27+ node -v
28+ npm -v
29+
30+ - name : Install dependencies
31+ run : npm ci
32+
33+ - name : NPM whoami
34+ run : npm whoami
35+ env :
36+ NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
37+
38+ - name : Publish package
39+ run : npm publish
40+ env :
41+ NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## [ HEAD ] ( https://github.com/neogeek/get-unity/tree/HEAD ) - (2023-08-01 )
3+ ## [ v2.0.0 ] ( https://github.com/neogeek/get-unity/tree/v2.0.0 ) - (2024-04-30 )
44
5- [ Full Changelog] ( https://github.com/neogeek/get-unity/compare/v1.5.0...HEAD )
5+ [ Full Changelog] ( https://github.com/neogeek/get-unity/compare/v1.5.0...v2.0.0 )
66
7+ - [ hotfix] Updated packages. [ #38 ] ( https://github.com/neogeek/get-unity/pull/38 )
8+ - Test on ubuntu and windows via GitHub Actions. (#37 ) [ #37 ] ( https://github.com/neogeek/get-unity/pull/37 )
9+ - Fixed invalid export. (#36 ) [ #36 ] ( https://github.com/neogeek/get-unity/pull/36 )
10+ - Removed jest in favor of the native test utility. (#35 ) [ #35 ] ( https://github.com/neogeek/get-unity/pull/35 )
711- Check for link selector before returning result. (#33 ) [ #33 ] ( https://github.com/neogeek/get-unity/pull/33 )
812- [ hotfix] Updated packages. (#32 ) [ #32 ] ( https://github.com/neogeek/get-unity/pull/32 )
913- Added Mac Silicon support. (#28 ) [ #28 ] ( https://github.com/neogeek/get-unity/pull/28 )
5862
5963[ Full Changelog] ( https://github.com/neogeek/get-unity/compare/v1.0.0...v1.1.0 )
6064
61- - Added update-notifier package. [ #6 ] ( https://github.com/neogeek/get-unity/pull/6 )
6265- Editor installers update (and offline mode) (#14 ) [ #14 ] ( https://github.com/neogeek/get-unity/pull/14 )
6366- Add parsing file (ProjectVersion.txt) via CLI flag support. (#12 ) [ #12 ] ( https://github.com/neogeek/get-unity/pull/12 )
6467- Added aliases to help and version flags. (#11 ) [ #11 ] ( https://github.com/neogeek/get-unity/pull/11 )
6568- Added chalk and meow for managing cli input and flags. (#8 ) [ #8 ] ( https://github.com/neogeek/get-unity/pull/8 )
69+ - Added update-notifier package. [ #6 ] ( https://github.com/neogeek/get-unity/pull/6 )
6670
6771## [ v1.0.0] ( https://github.com/neogeek/get-unity/tree/v1.0.0 ) - (2019-10-29)
6872
Original file line number Diff line number Diff line change 88 "get-unity" : " bin/index.js"
99 },
1010 "engines" : {
11- "node" : " >=16.13.0 "
11+ "node" : " >=20 "
1212 },
1313 "license" : " MIT" ,
1414 "dependencies" : {
You can’t perform that action at this time.
0 commit comments