-
Notifications
You must be signed in to change notification settings - Fork 3.2k
107 lines (94 loc) · 3.87 KB
/
Copy pathpublish.yml
File metadata and controls
107 lines (94 loc) · 3.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: Publish
on:
workflow_dispatch:
release:
types: [published]
jobs:
publish-mcp-canary-npm:
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # Required for OIDC npm publishing
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24
registry-url: https://registry.npmjs.org/
- name: Get current date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Get current version
id: version
run: echo "version=$(node -p "require('./package.json').version")" >> $GITHUB_OUTPUT
- name: Set canary version
id: canary-version
run: echo "version=${{ steps.version.outputs.version }}-alpha-${{ steps.date.outputs.date }}" >> $GITHUB_OUTPUT
- name: Update package.json version
run: npm version ${{ steps.canary-version.outputs.version }} --no-git-tag-version
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run lint
- run: npm run ctest
- name: Publish to npm with next tag
run: npm publish --tag next
publish-mcp-release-npm:
if: github.event_name == 'release'
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # Required for OIDC npm publishing
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npx playwright install --with-deps
- run: npm run lint
- run: npm run ctest
- run: npm publish
publish-mcp-release-registry:
# Runs on release (after npm publish succeeds) or via manual workflow_dispatch
# (e.g. to retroactively publish a version, in which case publish-mcp-release-npm
# is skipped — the always() + result check lets this job still run).
if: |
always() &&
(github.event_name == 'release' || github.event_name == 'workflow_dispatch') &&
needs.publish-mcp-release-npm.result != 'failure' &&
needs.publish-mcp-release-npm.result != 'cancelled'
needs: publish-mcp-release-npm
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # Required for GitHub OIDC auth to the MCP Registry
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Validate server.json version matches package.json
run: |
node -e "
const pkg = require('./package.json');
const server = require('./server.json');
const mismatches = [];
if (server.version !== pkg.version)
mismatches.push(\`server.version=\${server.version} != package.version=\${pkg.version}\`);
for (const p of server.packages) {
if (p.version !== pkg.version)
mismatches.push(\`packages[\${p.identifier}].version=\${p.version} != package.version=\${pkg.version}\`);
}
if (mismatches.length) {
console.error('server.json is out of sync with package.json:');
for (const m of mismatches) console.error(' ' + m);
process.exit(1);
}
"
- name: Install mcp-publisher
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_linux_amd64.tar.gz" \
| tar xz mcp-publisher
- name: Authenticate with MCP Registry (GitHub OIDC)
run: ./mcp-publisher login github-oidc
- name: Publish to MCP Registry
run: ./mcp-publisher publish