From 80e52908b717d259f1c8a3daa2783f14e3afc6d9 Mon Sep 17 00:00:00 2001 From: Dor Blayzer <59066376+Dor-bl@users.noreply.github.com> Date: Sat, 19 Oct 2024 16:00:53 +0300 Subject: [PATCH] github: Fix .sln path for release-nuget.yml Due to changes on https://github.com/appium/dotnet-client/pull/844, need to update the release-nuget as well --- .github/workflows/release-nuget.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-nuget.yml b/.github/workflows/release-nuget.yml index 89445df5b..3cde0ccd1 100644 --- a/.github/workflows/release-nuget.yml +++ b/.github/workflows/release-nuget.yml @@ -18,7 +18,7 @@ jobs: dotnet-version: 5.0.x - name: Install dependencies - run: dotnet restore src/Appium.Net.sln + run: dotnet restore Appium.Net.sln - name: Build run: | @@ -27,7 +27,7 @@ jobs: } else { $versionPrefix = $matches[2] - $dotnetBuildCmd = "dotnet build src/Appium.Net.sln --configuration Release -p:VersionPrefix=${versionPrefix}" + $dotnetBuildCmd = "dotnet build Appium.Net.sln --configuration Release -p:VersionPrefix=${versionPrefix}" if ($matches.Count -eq 7) { $versionSuffix = $matches[6] $dotnetBuildCmd += " --version-suffix ${versionSuffix}"