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