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
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:

env:
REGISTRY: docker.io
IMAGE_NAME: elpaypes/iexec-mcp
IMAGE_NAME: elpaypes/mcp-server

jobs:
validate:
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
images: ${{ env.IMAGE_NAME }}
tags: |
type=raw,value=${{ needs.validate.outputs.version }}
type=raw,value=latest,enable=${{ needs.validate.outputs.is-prerelease == 'false' }}
type=raw,value=latest

- name: Build and push Docker image to elpaypes
uses: docker/build-push-action@v5
Expand All @@ -168,8 +168,8 @@ jobs:
if: needs.npm-release.result == 'success' && needs.docker-release.result == 'success'
run: |
echo "✅ Successfully published v${{ needs.validate.outputs.version }}"
echo "📦 npm: https://www.npmjs.com/package/@paypes/iexec-mcp"
echo "🐳 Docker: https://hub.docker.com/r/elpaypes/iexec-mcp"
echo "📦 npm: https://www.npmjs.com/package/@paypes/mcp-server"
echo "🐳 Docker: https://hub.docker.com/r/elpaypes/mcp-server"

- name: Notify on failure
if: needs.npm-release.result == 'failure' || needs.docker-release.result == 'failure'
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@paypes/iexec-mcp",
"name": "@paypes/mcp-server",
"version": "0.0.5",
"description": "MCP server for interacting with iExec Blockchain",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"iexec-mcp": "build/index.js",
"mcp-server": "build/index.js",
"run": "build/index.js"
},
"homepage": "https://github.com/iExecBlockchainComputing/iexec-mcp-server",
Expand Down
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": {
".": {
"release-type": "node",
"package-name": "@paypes/iexec-mcp",
"package-name": "@paypes/mcp-server",
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
Expand Down