We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90f399 commit f795a47Copy full SHA for f795a47
1 file changed
.github/workflows/publish-npm.yml
@@ -37,12 +37,14 @@ jobs:
37
38
- name: Publish to NPM
39
run: |
40
- if [ -n "${{ github.event.inputs.path }}" ]; then
41
- PATHS_RELEASED='[\"${{ github.event.inputs.path }}\"]'
+ if [ -n "$INPUT_PATH" ]; then
+ PATHS_RELEASED="[\"$INPUT_PATH\"]"
42
else
43
PATHS_RELEASED='[\".\", \"packages/mcp-server\"]'
44
fi
45
pnpm tsn scripts/publish-packages.ts "{ \"paths_released\": \"$PATHS_RELEASED\" }"
46
+ env:
47
+ INPUT_PATH: ${{ github.event.inputs.path }}
48
49
- name: Upload MCP Server DXT GitHub release asset
50
0 commit comments