added icon and readme for nugets, added pipeline verification and include symbols and source
Publish NuGets / build (release) Failing after 13s

This commit is contained in:
2024-12-22 11:58:30 -05:00
parent 9df5750f1c
commit 602076b669
4 changed files with 25 additions and 5 deletions
+7 -1
View File
@@ -31,7 +31,13 @@ jobs:
run: dotnet restore
- name: Build and Pack NuGet Package
run: dotnet pack -c Release -o ./artifacts -p:Version=${{ env.RELEASE_VERSION }}
run: dotnet pack -c Release -o ./artifacts \
-p:Version=${{ env.RELEASE_VERSION }} \
--include-symbols \
--include-source
- name: Validate NuGet Package
run: dotnet nuget verify ./artifacts/*.nupkg
- name: Publish to NuGet.org
run: |