Skip to content

Commit 806fd72

Browse files
authored
github: Fix .sln path for release-nuget.yml (#851)
Due to changes on #844, need to update the release-nuget as well
1 parent dfb65ac commit 806fd72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-nuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
dotnet-version: 5.0.x
1919

2020
- name: Install dependencies
21-
run: dotnet restore src/Appium.Net.sln
21+
run: dotnet restore Appium.Net.sln
2222

2323
- name: Build
2424
run: |
@@ -27,7 +27,7 @@ jobs:
2727
}
2828
else {
2929
$versionPrefix = $matches[2]
30-
$dotnetBuildCmd = "dotnet build src/Appium.Net.sln --configuration Release -p:VersionPrefix=${versionPrefix}"
30+
$dotnetBuildCmd = "dotnet build Appium.Net.sln --configuration Release -p:VersionPrefix=${versionPrefix}"
3131
if ($matches.Count -eq 7) {
3232
$versionSuffix = $matches[6]
3333
$dotnetBuildCmd += " --version-suffix ${versionSuffix}"

0 commit comments

Comments
 (0)