We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a67f1e commit 49fd4f8Copy full SHA for 49fd4f8
.github/workflows/release.yml
@@ -33,7 +33,11 @@ jobs:
33
uses: actions/upload-artifact@v1
34
with:
35
name: Notion.Net
36
- path: ./Src/Notion.Client/bin/Release/Notion.Net.${{ github.event.release.tag_name }}.nupkg
+ path: |
37
+ ./Src/Notion.Client/bin/Release/Notion.Net.${{ github.event.release.tag_name }}.nupkg
38
+ ./Src/Notion.Client/bin/Release/Notion.Net.${{ github.event.release.tag_name }}.snupkg
39
40
- name: Publish Nuget Package
- run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.nuget_api_key }} --source https://api.nuget.org/v3/index.json --no-symbols true
41
+ run: dotnet nuget push **/*.nupkg --api-key ${{ secrets.nuget_api_key }} --source https://api.nuget.org/v3/index.json
42
+
43
+ - name: Publish Symbol Package
0 commit comments