File tree Expand file tree Collapse file tree 6 files changed +7383
-927
lines changed Expand file tree Collapse file tree 6 files changed +7383
-927
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : [push]
4+
5+ jobs :
6+ release :
7+ needs : checking
8+ runs-on : ubuntu-latest
9+ if : github.ref == 'refs/heads/main'
10+ steps :
11+ - uses : actions/checkout@v4
12+ - uses : actions/setup-node@v4
13+ with :
14+ node-version : 22
15+ cache : " npm"
16+ - run : npm ci
17+ - run : npm run release
18+ env :
19+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
20+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1+ # build output
2+ dist /
3+
4+ # generated types
5+ .astro /
6+
7+ # dependencies
8+ node_modules /
9+
10+ # logs
11+ npm-debug.log *
12+ yarn-debug.log *
13+ yarn-error.log *
14+ pnpm-debug.log *
15+
16+ # environment variables
17+ .env
18+ .env.production
19+
20+ # macOS-specific files
21+ .DS_Store
22+
23+ # jetbrains setting folder
24+ .idea /
Original file line number Diff line number Diff line change 1+ * .dxt
2+ smithery.yaml
3+ Dockerfile
4+ examples
5+ assets
6+ CHANGELOG.md
You can’t perform that action at this time.
0 commit comments