We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c13f6d commit 2c32ed1Copy full SHA for 2c32ed1
.github/workflows/ci.yml
@@ -17,8 +17,8 @@ jobs:
17
with:
18
dotnet-version: "9.0.x"
19
20
- - name: Restore
21
- run: dotnet restore
+ - name: Restore MCP.sln
+ run: dotnet restore MCP.sln
22
23
- - name: Build (Release)
24
- run: dotnet build --no-restore -c Release
+ - name: Build MCP.sln (Release)
+ run: dotnet build MCP.sln -c Release --no-restore
docs/CI-CD.md
@@ -1,6 +1,6 @@
1
# CI/CD
2
3
-- CI: Builds the repository on every push and PR (.github/workflows/ci.yml).
+- CI: Builds the `MCP.sln` solution on every push and PR (.github/workflows/ci.yml).
4
- CD: Publishes single-file executables for `server.Stdio` for three OS targets in one run (.github/workflows/release.yml).
5
6
How to trigger deployment:
0 commit comments