Skip to content

Commit 6e12d3c

Browse files
committed
fix: add build step to workflow and ensure dist files are included in package
1 parent 42d3b70 commit 6e12d3c

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
run: git push --follow-tags origin main
5252
# Ensure this pushes to the correct branch (e.g., main)
5353

54+
- name: Build package
55+
run: npm run build
56+
5457
- name: Publish to npm
5558
run: npm publish --access public
5659
env:

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"mcp-server-azure-devops": "./bin/mcp-server-azure-devops.js"
99
},
1010
"files": [
11-
"dist",
12-
"bin",
13-
"docs",
11+
"dist/",
12+
"bin/",
13+
"docs/",
1414
"LICENSE",
1515
"README.md"
1616
],

0 commit comments

Comments
 (0)