Skip to content

Commit

Permalink
test 5
Browse files Browse the repository at this point in the history
  • Loading branch information
asv-soft-u05 committed Jul 1, 2024
1 parent 56fa7ff commit abbefaf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ApiReleaseDeployActionGitHubOnly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,16 @@ jobs:
fi
- name: Pack package
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 .

- name: Check NuGet package file existence
run: |
if [ -f "Asv.Drones.Gui.Api.${VERSION}.nupkg" ]; then
echo "NuGet package file exists in the root directory"
else
echo "Error: NuGet package file does not exist in the root directory"
exit 1
fi
- name: List output files
run: ls -la
Expand Down

0 comments on commit abbefaf

Please sign in to comment.