Skip to content

Commit 49fd4f8

Browse files
Update release pipeline to publish snupkg 👷
1 parent 3a67f1e commit 49fd4f8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ jobs:
3333
uses: actions/upload-artifact@v1
3434
with:
3535
name: Notion.Net
36-
path: ./Src/Notion.Client/bin/Release/Notion.Net.${{ github.event.release.tag_name }}.nupkg
36+
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
3739
3840
- name: Publish Nuget Package
39-
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

Comments
 (0)