File tree Expand file tree Collapse file tree
packages/channel-connector Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Publish Channel Connector Package
2+
3+ on :
4+ release :
5+ types : [created]
6+ workflow_dispatch :
7+ inputs :
8+ tag :
9+ description : ' Package version tag (e.g., channel-connector-v0.1.0)'
10+ required : true
11+
12+ jobs :
13+ publish :
14+ name : Publish @ai-devkit/channel-connector to NPM
15+ runs-on : ubuntu-latest
16+
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v4
20+
21+ - name : Setup Node.js
22+ uses : actions/setup-node@v4
23+ with :
24+ node-version : 20
25+ registry-url : ' https://registry.npmjs.org'
26+ cache : ' npm'
27+
28+ - name : Install dependencies
29+ run : npm ci
30+
31+ - name : Build all packages
32+ run : npm run build
33+
34+ - name : Publish to NPM
35+ working-directory : ./packages/channel-connector
36+ run : npm publish --access public
37+ env :
38+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1+ src /
2+ tsconfig.json
3+ .eslintrc.json
4+ * .test.ts
5+ * .spec.ts
6+ .DS_Store
7+ node_modules /
8+ .git /
9+ .vscode /
10+ .idea /
11+ * .log
12+ ai.plan.md
13+ docs /
14+ .ai-devkit.json
15+ .cursor /
16+ .github /
17+ .agent /
18+ .claude /
19+ .gemini /
20+ AGENTS.md
21+ jest.config.js
22+ project.json
You can’t perform that action at this time.
0 commit comments