We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c8e460 commit b2ebf1bCopy full SHA for b2ebf1b
1 file changed
.github/workflows/build-package.yml
@@ -18,6 +18,11 @@ on:
18
required: false
19
type: boolean
20
default: true
21
+ publish-myget-rc:
22
+ description: 'Publish to MyGet.org RC feed'
23
+ required: false
24
+ type: boolean
25
+ default: false
26
publish-nuget-org:
27
description: 'Publish to NuGet.org'
28
@@ -62,6 +67,11 @@ jobs:
62
67
run: |
63
68
dotnet nuget push "build\output\*.nupkg" -k ${{ secrets.MYGET_TOKEN }} -s https://www.myget.org/F/opensilver/api/v2/package
64
69
70
+ - name: Upload packages to MyGet RC feed
71
+ if: ${{ inputs['publish-myget-rc'] }}
72
+ run: |
73
+ dotnet nuget push "build\output\*.nupkg" -k ${{ secrets.MYGET_RC_TOKEN }} -s ${{ secrets.MYGET_RC_FEED }}
74
+
65
75
- name: Upload packages to NuGet.org
66
76
if: ${{ inputs['publish-nuget-org'] }}
77
0 commit comments