Skip to content

Commit

Permalink
Use correct feeds and build settings for publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Theken committed Aug 29, 2017
1 parent bd0fa20 commit b1b9ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dotnet pack ./Postmark/Postmark.csproj --no-build -c Release -o ../../tmp /p:Ass

if [[ $TRAVIS_TAG && $NUGET_API_KEY && $MYGET_API_KEY ]]; then
echo 'This package will be published to NuGet, and MyGet'
dotnet nuget push -s https://www.myget.org/F/postmark-ci/api/v3/index.json -k $NUGET_API_KEY ../tmp/*.nupkg
dotnet nuget push -s https://www.nuget.org/ -k $NUGET_API_KEY ../tmp/*.nupkg
dotnet nuget push -s https://www.myget.org/F/postmark-ci/api/v3/index.json -k $MYGET_API_KEY ../tmp/*.nupkg
else
echo 'This package will be published to the CI "MyGet" feed:'
Expand Down

0 comments on commit b1b9ecc

Please sign in to comment.