Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: npm

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: npm

Expand All @@ -46,7 +46,7 @@ jobs:
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: npm

Expand All @@ -67,7 +67,7 @@ jobs:
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
cache: npm

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-mcp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
ref: ${{ github.event.release.tag_name }}

- name: Setup Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: 22
cache: npm
Expand All @@ -37,7 +37,7 @@
run: npm run build

- name: Install MCP Publisher
if: steps.publish.outputs.published == 'true'

Check failure on line 40 in .github/workflows/publish-mcp.yaml

View workflow job for this annotation

GitHub Actions / Lint

[actionlint] reported by reviewdog 🐶 property "publish" is not defined in object type {} [expression] Raw Output: e:.github/workflows/publish-mcp.yaml:40:13: property "publish" is not defined in object type {} [expression]
run: |
curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" -o mcp-publisher.tar.gz
tar xzf mcp-publisher.tar.gz mcp-publisher
Expand All @@ -45,9 +45,9 @@
chmod +x mcp-publisher

- name: Login to MCP Registry
if: steps.publish.outputs.published == 'true'

Check failure on line 48 in .github/workflows/publish-mcp.yaml

View workflow job for this annotation

GitHub Actions / Lint

[actionlint] reported by reviewdog 🐶 property "publish" is not defined in object type {} [expression] Raw Output: e:.github/workflows/publish-mcp.yaml:48:13: property "publish" is not defined in object type {} [expression]
run: ./mcp-publisher login github-oidc

- name: Publish to MCP Registry
if: steps.publish.outputs.published == 'true'

Check failure on line 52 in .github/workflows/publish-mcp.yaml

View workflow job for this annotation

GitHub Actions / Lint

[actionlint] reported by reviewdog 🐶 property "publish" is not defined in object type {} [expression] Raw Output: e:.github/workflows/publish-mcp.yaml:52:13: property "publish" is not defined in object type {} [expression]
run: ./mcp-publisher publish
Loading