Skip to content

Refactor release workflow to improve executable path resolution and c… #13

Refactor release workflow to improve executable path resolution and c…

Refactor release workflow to improve executable path resolution and c… #13

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"
- name: Restore MCP.sln
run: dotnet restore MCP.sln
- name: Build MCP.sln (Release)
run: dotnet build MCP.sln -c Release --no-restore