File tree Expand file tree Collapse file tree 5 files changed +754
-0
lines changed
Expand file tree Collapse file tree 5 files changed +754
-0
lines changed Original file line number Diff line number Diff line change 1+ # Changesets
2+
3+ Hello and welcome! This folder has been automatically generated by ` @changesets/cli ` , a build tool that works
4+ with multi-package repos, or single-package repos to help you version and publish your code. You can
5+ find the full documentation for it [ in our repository] ( https://github.com/changesets/changesets )
6+
7+ We have a quick list of common questions to get you started engaging with this project in
8+ [ our documentation] ( https://github.com/changesets/changesets/blob/main/docs/common-questions.md )
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://unpkg.com/@changesets/config@3.1.2/schema.json" ,
3+ "changelog" : [" @changesets/changelog-github" , { "repo" : " @modelcontextprotocol/typescript-sdk" }],
4+ "commit" : false ,
5+ "fixed" : [],
6+ "linked" : [],
7+ "access" : " restricted" ,
8+ "baseBranch" : " main" ,
9+ "updateInternalDependencies" : " patch" ,
10+ "ignore" : []
11+ }
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ permissions :
4+ contents : write
5+ pull-requests : write
6+
7+ on :
8+ push :
9+ branches :
10+ - main
11+
12+ concurrency : ${{ github.workflow }}-${{ github.ref }}
13+
14+ jobs :
15+ release :
16+ name : Release
17+ runs-on : ubuntu-latest
18+ steps :
19+ - uses : actions/checkout@v6
20+
21+ - name : Install pnpm
22+ uses : pnpm/action-setup@v4
23+ with :
24+ run_install : false
25+
26+ - name : Setup Node.js
27+ uses : actions/setup-node@v6
28+ with :
29+ node-version : 24
30+ cache : pnpm
31+ cache-dependency-path : pnpm-lock.yaml
32+ registry-url : ' https://registry.npmjs.org'
33+
34+ - name : Install dependencies
35+ run : pnpm install
36+
37+ - name : Create Release Pull Request or Publish to npm
38+ id : changesets
39+ uses : changesets/action@v1
40+ with :
41+ publish : pnpm run build:all && pnpm changeset publish
42+ env :
43+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
44+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
45+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 3232 },
3333 "devDependencies" : {
3434 "@cfworker/json-schema" : " catalog:runtimeShared" ,
35+ "@changesets/cli" : " ^2.29.8" ,
3536 "@eslint/js" : " catalog:devTools" ,
3637 "@types/content-type" : " catalog:devTools" ,
3738 "@types/cors" : " catalog:devTools" ,
You can’t perform that action at this time.
0 commit comments