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
28 changes: 28 additions & 0 deletions .github/workflows/marketplace-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish Extension Package

on:
push:
branches:
- main

permissions:
contents: read

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: 'git config --global url."https://github.com/".insteadOf git@github.com:'
- run: git submodule sync --recursive
- run: git submodule update --init --recursive
- uses: actions/setup-node@v6
with:
node-version: 24
registry-url: "https://registry.npmjs.org"
- run: npm install -g npm@latest
- run: npm install
- run: npm run build
- run: npx @vscode/vsce publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
Comment thread Fixed
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Edit the configuration file:
```json
{
"mcpServers": {
"next2d": {
"next2d-development-mcp": {
"command": "npx",
"args": ["-y", "next2d-development-mcp"]
}
Expand All @@ -132,7 +132,7 @@ Create `.mcp.json` at the project root:
```json
{
"mcpServers": {
"next2d": {
"next2d-development-mcp": {
"command": "npx",
"args": ["-y", "next2d-development-mcp"]
}
Expand All @@ -155,7 +155,7 @@ Create `.codex/mcp.json` at the project root:
```json
{
"mcpServers": {
"next2d": {
"next2d-development-mcp": {
"command": "npx",
"args": ["-y", "next2d-development-mcp"]
}
Expand All @@ -175,7 +175,7 @@ Create `.gemini/settings.json` at the project root:
```json
{
"mcpServers": {
"next2d": {
"next2d-development-mcp": {
"command": "npx",
"args": ["-y", "next2d-development-mcp"]
}
Expand All @@ -196,7 +196,7 @@ Add the MCP server from Cline settings:
```json
{
"mcpServers": {
"next2d": {
"next2d-development-mcp": {
"command": "npx",
"args": ["-y", "next2d-development-mcp"]
}
Expand All @@ -215,7 +215,7 @@ Add to Cursor settings:
```json
{
"mcpServers": {
"next2d": {
"next2d-development-mcp": {
"command": "npx",
"args": ["-y", "next2d-development-mcp"]
}
Expand All @@ -233,7 +233,7 @@ Add to Windsurf MCP configuration:
```json
{
"mcpServers": {
"next2d": {
"next2d-development-mcp": {
"command": "npx",
"args": ["-y", "next2d-development-mcp"]
}
Expand Down
Loading