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 56fa7ff commit abbefafCopy full SHA for abbefaf
.github/workflows/ApiReleaseDeployActionGitHubOnly.yml
@@ -47,7 +47,16 @@ jobs:
47
fi
48
49
- name: Pack package
50
- run: dotnet pack ./src/Asv.Drones.Gui.Api/Asv.Drones.Gui.Api.csproj -c Release /p:Version=${VERSION}-dev --no-build -o .
+ run: dotnet pack ./src/Asv.Drones.Gui.Api/Asv.Drones.Gui.Api.csproj -c Release /p:Version=${VERSION} --no-build -o .
51
+
52
+ - name: Check NuGet package file existence
53
+ run: |
54
+ if [ -f "Asv.Drones.Gui.Api.${VERSION}.nupkg" ]; then
55
+ echo "NuGet package file exists in the root directory"
56
+ else
57
+ echo "Error: NuGet package file does not exist in the root directory"
58
+ exit 1
59
+ fi
60
61
- name: List output files
62
run: ls -la
0 commit comments