We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22311e8 commit c7b5feeCopy full SHA for c7b5fee
2 files changed
.github/workflows/release.yml
@@ -44,6 +44,7 @@ jobs:
44
45
- name: Get package info
46
id: package
47
+ working-directory: package
48
run: |
49
VERSION=$(jq -r '.version' package.json)
50
PACKAGE_NAME=$(jq -r '.name' package.json)
@@ -68,8 +69,8 @@ jobs:
68
69
working-directory: package
70
71
- name: Publish
- run : pnpm -r publish --no-git-checks --access public --provenance
72
73
+ run : pnpm publish --access public --provenance
74
75
- name: Create GitHub Release with tag
76
id: create-release
package.json
@@ -1,5 +1,6 @@
1
{
2
"name": "@aws-lambda-mcp-server/root",
3
+ "private": true,
4
"version": "0.0.1",
5
"description": "A Hono wrapper for building an MCP (Model Context Protocol) Server that runs on AWS Lambda functions.",
6
"type": "module",
0 commit comments