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
7 changes: 3 additions & 4 deletions .github/workflows/publish-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ jobs:
node-version: '22'
registry-url: 'https://registry.npmjs.org'

- name: Install npm with trusted publishing support
run: npm install --global npm@11.8.0

- run: bun install

- name: Determine target
Expand Down Expand Up @@ -106,8 +109,6 @@ jobs:
else
npm publish --access public
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Publish @graspful/mcp
if: (steps.target.outputs.target == 'all' || steps.target.outputs.target == 'mcp') && github.event.inputs.dry_run != 'true'
Expand All @@ -119,8 +120,6 @@ jobs:
else
npm publish --access public
fi
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Dry run — CLI
if: (steps.target.outputs.target == 'all' || steps.target.outputs.target == 'cli') && github.event.inputs.dry_run == 'true'
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"keywords": ["course", "learning", "adaptive", "mcp", "mcp-server", "ai", "ai-agent", "agent", "cli", "education", "edtech", "knowledge-graph", "spaced-repetition", "course-creation", "yaml", "adaptive-learning", "lms"],
"repository": {
"type": "git",
"url": "https://github.com/willwearing/graspful.git",
"url": "git+https://github.com/willwearing/graspful.git",
"directory": "packages/cli"
},
"homepage": "https://graspful.ai",
"bin": {
"graspful": "./dist/index.js"
"graspful": "dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
"keywords": ["mcp", "mcp-server", "graspful", "course", "course-creation", "adaptive-learning", "ai-agent", "knowledge-graph", "spaced-repetition", "edtech", "education", "yaml", "lms", "model-context-protocol"],
"repository": {
"type": "git",
"url": "https://github.com/willwearing/graspful.git",
"url": "git+https://github.com/willwearing/graspful.git",
"directory": "packages/mcp"
},
"homepage": "https://graspful.ai",
"bin": {
"graspful-mcp": "./dist/index.js"
"graspful-mcp": "dist/index.js"
},
"main": "./dist/index.js",
"files": ["dist"],
Expand Down
Loading