File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11* @ budgetpreneur @ crimsonred @ mohitpubnub
22README.md @ techwritermat
3+ .github @ parfeon
34
Original file line number Diff line number Diff line change 2828 token : ${{ secrets.GH_TOKEN }}
2929 publish-nuget :
3030 name : Publish to NuGet
31- runs-on : windows-latest
31+ runs-on : windows-2019
3232 needs : check-release
3333 if : ${{ needs.check-release.outputs.release == 'true' }}
3434 steps :
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ $RELEASES_PATH = "$githubWorkspace\.github\.release"
66# Publish package
77$PACKAGE_NAME = Get-ChildItem - Name - Path " $RELEASES_PATH \Api\*" - Include * .nupkg
88$PACKAGE_PATH = " $RELEASES_PATH \Api\$PACKAGE_NAME "
9- nuget.exe push $PACKAGE_PATH - Source " https://www.nuget.org" - ApiKey $nugetApiKey
9+ # nuget.exe push $PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
1010
1111# Publish PCL package.
1212$PCL_PACKAGE_NAME = Get-ChildItem - Name - Path " $RELEASES_PATH \PCL\*" - Include * .nupkg
1313$PCL_PACKAGE_PATH = " $RELEASES_PATH \PCL\$PCL_PACKAGE_NAME "
14- nuget.exe push $PCL_PACKAGE_PATH - Source " https://www.nuget.org" - ApiKey $nugetApiKey
14+ # nuget.exe push $PCL_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
1515
1616# Publish UWP package.
1717$UWP_PACKAGE_NAME = Get-ChildItem - Name - Path " $RELEASES_PATH \UWP\*" - Include * .nupkg
1818$UWP_PACKAGE_PATH = " $RELEASES_PATH \UWP\$UWP_PACKAGE_NAME "
19- nuget.exe push $UWP_PACKAGE_PATH - Source " https://www.nuget.org" - ApiKey $nugetApiKey
19+ # nuget.exe push $UWP_PACKAGE_PATH -Source "https://www.nuget.org" -ApiKey $nugetApiKey
You can’t perform that action at this time.
0 commit comments