Skip to content

Commit c80e592

Browse files
committed
chore: update publish workflow and project file for symbol publishing
1 parent ecda1d1 commit c80e592

2 files changed

Lines changed: 3 additions & 13 deletions

File tree

.github/workflows/publish.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,6 @@ jobs:
5252
--api-key ${{ secrets.NUGET_API_KEY }}
5353
--skip-duplicate
5454
55-
- name: Publish symbols to NuGet.org
56-
run: >
57-
dotnet nuget push ./artifacts/*.snupkg
58-
--source https://api.nuget.org/v3/index.json
59-
--api-key ${{ secrets.NUGET_API_KEY }}
60-
--skip-duplicate
61-
6255
- name: Publish to GitHub Packages
6356
run: >
6457
dotnet nuget push ./artifacts/*.nupkg
@@ -117,15 +110,13 @@ jobs:
117110
118111
- Soft delete with global query filters
119112
- Audit trail (CreatedAt, UpdatedAt, CreatedBy, UpdatedBy)
120-
- Multi-tenancy support
121113
- Repository + Unit of Work pattern
122114
- Specification pattern
123115
- Offset & keyset pagination
124116
- Dynamic filters
125117
- Structured exceptions
126118
files: |
127119
./artifacts/*.nupkg
128-
./artifacts/*.snupkg
129120
draft: false
130121
prerelease: false
131122
env:

src/EfCoreKit/EfCoreKit.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@
1212
<PackageTags>efcore;entity-framework-core;entityframeworkcore;soft-delete;softdelete;audit-trail;audit;repository-pattern;repository;unit-of-work;specification-pattern;specification;pagination;keyset-pagination;cursor-pagination;dynamic-filters;query-helpers;data-access;orm-extensions;dotnet;csharp;boilerplate</PackageTags>
1313
<PackageReadmeFile>README.nuget.md</PackageReadmeFile>
1414
<IsPackable>true</IsPackable>
15-
<DebugType>portable</DebugType>
16-
<DebugSymbols>true</DebugSymbols>
17-
<IncludeSymbols>true</IncludeSymbols>
18-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
15+
<DebugType>embedded</DebugType>
16+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
17+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
1918
</PropertyGroup>
2019

2120
<ItemGroup>

0 commit comments

Comments
 (0)