Skip to content

Commit 2039816

Browse files
committed
ci: version+1
1 parent e221a0e commit 2039816

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/publish-docker-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Build & push Docker image
1313
with:
1414
image: antonytm/mcp-sitecore-linux
15-
tags: 1.3.0, latest
15+
tags: 1.3.1, latest
1616
registry: docker.io
1717
dockerfile: ./docker/linux/Dockerfile
1818
username: ${{ secrets.DOCKER_USERNAME }}

.github/workflows/publish-docker-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Build & push Docker image
1313
with:
1414
image: antonytm/mcp-sitecore-windows
15-
tags: 1.3.0, latest
15+
tags: 1.3.1, latest
1616
registry: docker.io
1717
dockerfile: ./docker/windows/Dockerfile
1818
platform: windows/amd64

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@antonytm/mcp-sitecore-server",
33
"mcpName": "io.github.Antonytm/mcp-sitecore-server",
4-
"version": "1.3.0",
4+
"version": "1.3.1",
55
"description": "A Model Context Protocol server for Sitecore",
66
"files": [
77
"dist",
@@ -25,13 +25,13 @@
2525
"start:stdio": "npm run build && cross-env TRANSPORT=stdio node dist/index.js",
2626
"run": "npm run build && node dist/run.js",
2727
"test": "npm run build && npm run bundle && vitest run",
28-
"docker:windows:build": "docker build -t antonytm/mcp-sitecore-windows:1.3.0 -t antonytm/mcp-sitecore-windows:latest --file .\\docker\\windows\\Dockerfile .",
28+
"docker:windows:build": "docker build -t antonytm/mcp-sitecore-windows:1.3.1 -t antonytm/mcp-sitecore-windows:latest --file .\\docker\\windows\\Dockerfile .",
2929
"docker:windows:run": "docker run -it --rm -p 4001:3001 antonytm/mcp-sitecore-windows:latest",
30-
"docker:windows:push": "docker push antonytm/mcp-sitecore-windows:1.3.0 && docker push antonytm/mcp-sitecore-windows:latest",
30+
"docker:windows:push": "docker push antonytm/mcp-sitecore-windows:1.3.1 && docker push antonytm/mcp-sitecore-windows:latest",
3131
"docker:windows": "npm run docker:windows:build && npm run docker:windows:push",
32-
"docker:linux:build": "docker build -t antonytm/mcp-sitecore-linux:1.3.0 -t antonytm/mcp-sitecore-linux:latest --file ./docker/linux/Dockerfile .",
32+
"docker:linux:build": "docker build -t antonytm/mcp-sitecore-linux:1.3.1 -t antonytm/mcp-sitecore-linux:latest --file ./docker/linux/Dockerfile .",
3333
"docker:linux:run": "docker run -it --rm -p 4001:3001 antonytm/mcp-sitecore-linux:latest",
34-
"docker:linux:push": "docker push antonytm/mcp-sitecore-linux:1.3.0 && docker push antonytm/mcp-sitecore-linux:latest",
34+
"docker:linux:push": "docker push antonytm/mcp-sitecore-linux:1.3.1 && docker push antonytm/mcp-sitecore-linux:latest",
3535
"docker:linux": "npm run docker:linux:build && npm run docker:linux:push"
3636
},
3737
"dependencies": {

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"url": "https://github.com/Antonytm/mcp-sitecore-server",
88
"source": "github"
99
},
10-
"version": "1.3.0",
10+
"version": "1.3.1",
1111
"packages": [
1212
{
1313
"registry_type": "npm",
1414
"registry_base_url": "https://registry.npmjs.org",
1515
"identifier": "@antonytm/mcp-sitecore-server",
16-
"version": "1.3.0",
16+
"version": "1.3.1",
1717
"transport": {
1818
"type": "stdio"
1919
},

tests/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const transportOptions: TransportOptions = {
1616

1717
const client = new Client({
1818
name: "mcp-sitecore-server",
19-
version: "1.3.0",
19+
version: "1.3.1",
2020
});
2121

2222
const transport = createTransport(transportOptions);

0 commit comments

Comments
 (0)