From 4871dd40061f31ff5dc14d70d9ca23d8293eae15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Nov=C3=A1k?= Date: Wed, 1 Jul 2026 23:46:44 +0200 Subject: [PATCH] Fix solution filename in CI/CD pipeline (use .slnx extension) --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fc5a395..4c72b7f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -19,13 +19,13 @@ jobs: dotnet-version: '10.0.x' - name: Restore dependencies - run: dotnet restore NixWslWrapper.sln + run: dotnet restore NixWslWrapper.slnx - name: Build solution - run: dotnet build NixWslWrapper.sln --configuration Release --no-restore + run: dotnet build NixWslWrapper.slnx --configuration Release --no-restore - name: Run unit tests - run: dotnet test NixWslWrapper.sln --configuration Release --no-build --verbosity normal + run: dotnet test NixWslWrapper.slnx --configuration Release --no-build --verbosity normal - name: Publish single-file executable run: dotnet publish src/NixWslWrapper.Cli/NixWslWrapper.Cli.csproj -c Release -r win-x64 --self-contained -p:PublishSingleFile=true -o ./dist