Skip to content

Commit 89e353b

Browse files
Merge branch 'main' into feature/58-database-objects-now-returns-parent-property
2 parents ac7a01b + e8eb3de commit 89e353b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
run: dotnet test --no-build --verbosity normal
2727

2828
- name: Create NuGet Package
29-
run: dotnet pack -c Release /p:Version=${{ github.event.release.tag_name }} /p:PackageReleaseNotes="See https://github.com/notion-dotnet/notion-sdk-net/releases/tag/${{ github.event.release.tag_name }}"
29+
run: |
30+
dotnet pack -c Release /p:Version=${{ github.event.release.tag_name }} /p:PackageReleaseNotes="See https://github.com/notion-dotnet/notion-sdk-net/releases/tag/${{ github.event.release.tag_name }}" /p:IncludeSymbols=true /p:SymbolPackageFormat=snupkg
31+
dotnet pack -c Release /p:Version=${{ github.event.release.tag_name }} /p:PackageReleaseNotes="See https://github.com/notion-dotnet/notion-sdk-net/releases/tag/${{ github.event.release.tag_name }}" /p:PackageReadmeFile=README.md
3032
working-directory: ./
3133

3234
- name: Archive NuGet Package

Src/Notion.Client/Notion.Client.csproj

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212
<PackageIcon>notion-logo.png</PackageIcon>
1313
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
1414
<PublishRepositoryUrl>true</PublishRepositoryUrl>
15-
16-
<!--Start: Create symbol package-->
17-
<IncludeSymbols>true</IncludeSymbols>
18-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
19-
<!--End: Create symbol package-->
2015
</PropertyGroup>
2116

2217
<ItemGroup>
@@ -37,6 +32,10 @@
3732
<Pack>True</Pack>
3833
<PackagePath></PackagePath>
3934
</None>
35+
<None Include="..\..\README.md">
36+
<Pack>True</Pack>
37+
<PackagePath></PackagePath>
38+
</None>
4039
</ItemGroup>
4140

4241
</Project>

0 commit comments

Comments
 (0)