Skip to content

Commit

Permalink
github: Fix .sln path for release-nuget.yml (#851)
Browse files Browse the repository at this point in the history
Due to changes on #844, need to update the release-nuget as well
  • Loading branch information
Dor-bl authored Oct 19, 2024
1 parent dfb65ac commit 806fd72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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}"
Expand Down

0 comments on commit 806fd72

Please sign in to comment.