We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfb65ac commit 80e5290Copy full SHA for 80e5290
.github/workflows/release-nuget.yml
@@ -18,7 +18,7 @@ jobs:
18
dotnet-version: 5.0.x
19
20
- name: Install dependencies
21
- run: dotnet restore src/Appium.Net.sln
+ run: dotnet restore Appium.Net.sln
22
23
- name: Build
24
run: |
@@ -27,7 +27,7 @@ jobs:
27
}
28
else {
29
$versionPrefix = $matches[2]
30
- $dotnetBuildCmd = "dotnet build src/Appium.Net.sln --configuration Release -p:VersionPrefix=${versionPrefix}"
+ $dotnetBuildCmd = "dotnet build Appium.Net.sln --configuration Release -p:VersionPrefix=${versionPrefix}"
31
if ($matches.Count -eq 7) {
32
$versionSuffix = $matches[6]
33
$dotnetBuildCmd += " --version-suffix ${versionSuffix}"
0 commit comments