File tree Expand file tree Collapse file tree 5 files changed +1807
-12
lines changed
Expand file tree Collapse file tree 5 files changed +1807
-12
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "$schema" :
" https://unpkg.com/@changesets/[email protected] /schema.json" ,
3+ "changelog" : [
4+ " @svitejs/changesets-changelog-github-compact" ,
5+ {
6+ "repo" : " ghostdevv/extractinator"
7+ }
8+ ],
9+ "commit" : false ,
10+ "linked" : [],
11+ "access" : " public" ,
12+ "ignore" : [],
13+ "baseBranch" : " main" ,
14+ "updateInternalDependencies" : " patch"
15+ }
Original file line number Diff line number Diff line change 1+ ---
2+ ' extractinator ' : minor
3+ ---
4+
5+ initial release
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ release :
10+ if : github.repository == 'ghostdevv/extractinator'
11+ permissions :
12+ contents : write # to create release (changesets/action)
13+ pull-requests : write # to create pull request (changesets/action)
14+ name : Release
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Checkout Repo
18+ uses : actions/checkout@v4
19+ with :
20+ # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
21+ fetch-depth : 0
22+
23+ - name : Setup Node.js 18.x
24+ uses : actions/setup-node@v2
25+ with :
26+ node-version : 18.x
27+
28+ - name : Setup PNPM
29+ 30+ with :
31+ version : 8.10.2
32+
33+ - name : Install Dependencies
34+ run : pnpm install --frozen-lockfile
35+
36+ - name : Build
37+ run : pnpm build
38+
39+ - name : Create Release Pull Request
40+ uses : changesets/action@v1
41+ with :
42+ publish : changeset publish
43+ env :
44+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
45+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 11{
22 "name" : " extractinator" ,
3- "version" : " 0.1 .0" ,
3+ "version" : " 0.0 .0" ,
44 "type" : " module" ,
55 "description" : " todo @fractalhq do this ty" ,
66 "contributors" : [
2626 "typescript" : " ^5.2.2"
2727 },
2828 "devDependencies" : {
29+ "@changesets/cli" : " ^2.26.2" ,
30+ "@svitejs/changesets-changelog-github-compact" : " ^1.1.0" ,
2931 "@types/node" : " ^20.8.5" ,
3032 "publint" : " ^0.2.5" ,
3133 "tsup" : " ^7.2.0" ,
You can’t perform that action at this time.
0 commit comments