File tree Expand file tree Collapse file tree 7 files changed +617
-592
lines changed Expand file tree Collapse file tree 7 files changed +617
-592
lines changed Original file line number Diff line number Diff line change 1- # Displaying a sponsor button in your repository
2- # https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
3-
4- # LFX Mentorship (formerly CommunityBridge)
5- # https://lfx.linuxfoundation.org/tools/mentorship
6- community_bridge :
7- # GitHub Sponsors
8- # https://github.com/sponsors
9- github : [ProAngular, CodyTolene]
10- # IssueHunt
11- # https://issuehunt.io/
12- issuehunt :
13- # Ko-fi
14- # https://ko-fi.com/
15- ko_fi :
16- # Liberapay
17- # https://en.liberapay.com/
18- liberapay :
19- # Open Collective
20- # https://opencollective.com/
21- open_collective :
22- # Otechie
23- # https://otechie.com/
24- otechie :
25- # Patreon
26- # https://www.patreon.com/
27- patreon :
28- # Tidelift
29- # https://tidelift.com/
30- tidelift :
31- # Custom URL
1+ github : [CodyTolene, ProAngular]
2+ buy_me_a_coffee : CodyTolene
3+ patreon : CodyTolene
324custom : ['https://www.paypal.me/CodyTolene']
Original file line number Diff line number Diff line change 1- # Github Package Deployment
2- # https://docs.github.com/en/packages
3- # https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
4-
51name : Verify and Deploy to GitHub Packages
2+
63on :
74 push :
8- branches :
9- - main
5+ tags :
6+ - ' v*'
7+
108jobs :
119 deploy_gpr_package :
1210 runs-on : ubuntu-latest
1311 permissions :
1412 contents : read
1513 packages : write
1614 steps :
17- - uses : actions/checkout@v3
18- - uses : actions/setup-node@v3
15+ - uses : actions/checkout@v4
16+ - uses : actions/setup-node@v4
1917 with :
2018 node-version : ' 20.x'
2119 registry-url : ' https://npm.pkg.github.com'
2220 - run : npm ci
2321 - run : npm run npm-build-package
24- - run : cd dist/npm && npm publish --access=public
22+ - run : cd dist/npm && npm publish
2523 env :
2624 NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1- # npmjs Package Deployment
2- # https://docs.npmjs.com/about-packages-and-modules
3-
41name : Verify and Deploy to npmjs
2+
3+ permissions :
4+ id-token : write
5+ contents : read
6+
57on :
68 push :
7- branches :
8- - main
9+ tags :
10+ - ' v*'
11+
912jobs :
1013 deploy_npmjs_package :
1114 runs-on : ubuntu-latest
1215 steps :
13- - uses : actions/checkout@v3
14- - uses : actions/setup-node@v3
16+ - uses : actions/checkout@v4
17+ - uses : actions/setup-node@v4
1518 with :
1619 node-version : ' 20.x'
1720 registry-url : ' https://registry.npmjs.org'
21+ - name : Update npm to latest
22+ run : npm install -g npm@latest
1823 - run : npm ci
1924 - run : npm run npm-build-package
20- - run : cd dist/npm && npm publish --access=public
21- env :
22- NODE_AUTH_TOKEN : ${{ secrets.NPM_AUTH_TOKEN }}
25+ - run : cd dist/npm && npm publish
You can’t perform that action at this time.
0 commit comments