Skip to content

Commit

Permalink
Skip NuGet package duplicates and fix empty symbol package generation (
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioaversa authored Sep 27, 2022
1 parent 3b64363 commit 38befe6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ jobs:
- name: Publish to nuget.org
run: |
dotnet nuget push ./nupkgs/*.nupkg \
--skip-duplicate \
--source ${{ env.NUGET_SOURCE }} \
--api-key ${{ env.NUGET_API_KEY }}
- name: Publish to github.com
run: |
dotnet nuget push ./nupkgs/*.nupkg \
--skip-duplicate \
--source ${{ env.GITHUB_NUGET_SOURCE }} \
--api-key ${{ env.GITHUB_NUGET_API_KEY }}
1 change: 0 additions & 1 deletion MoreStructures/MoreStructures.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<EmbedAllSources>True</EmbedAllSources>
<DebugType>embedded</DebugType>
<Description>MoreStructures is a library of classical algorithms and data structures, written 100% in (safe, managed) C# 10, for .NET 6 and above.
Data structures - Stacks, Queues, Priority Queues, Disjoint Sets, Trees, Graphs, Suffix Trees, Suffix Tries.
Algorithms - Strings sorting and matching. Lists searching and sorting. Trees augmentation and visit.
Expand Down

0 comments on commit 38befe6

Please sign in to comment.