File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed
packages/streaming-markdown Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish to npm
2+
3+ on :
4+ push :
5+ tags :
6+ - ' v*'
7+
8+ jobs :
9+ publish :
10+ runs-on : ubuntu-latest
11+ permissions :
12+ contents : read
13+ id-token : write
14+ steps :
15+ - uses : actions/checkout@v4
16+
17+ - uses : pnpm/action-setup@v4
18+ with :
19+ version : 9
20+
21+ - uses : actions/setup-node@v4
22+ with :
23+ node-version : ' 20'
24+ cache : ' pnpm'
25+ registry-url : ' https://registry.npmjs.org'
26+
27+ - run : pnpm install --frozen-lockfile
28+
29+ - run : pnpm --filter @stream-md/react build
30+
31+ - run : pnpm --filter @stream-md/react publish --access public --no-git-checks
32+ env :
33+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 11{
22 "name" : " @stream-md/react" ,
3- "version" : " 0.1.0 " ,
3+ "version" : " 0.1.1 " ,
44 "description" : " React component for rendering streaming markdown content" ,
55 "main" : " ./dist/index.js" ,
66 "module" : " ./dist/index.mjs" ,
You can’t perform that action at this time.
0 commit comments