diff --git a/push_packages.sh b/push_packages.sh index e1c0527..218120a 100644 --- a/push_packages.sh +++ b/push_packages.sh @@ -1,11 +1,11 @@ #!/usr/bin/bash -echo enter github api key: -read -rs GHK +#echo enter github api key: +#read -rs GHK echo enter nuget api key: read -rs NGK for PACK in $(find ./nuget -name '*.nupkg'); do - dotnet nuget push $PACK -k $GHK -s github --skip-duplicate + #dotnet nuget push $PACK -k $GHK -s github --skip-duplicate dotnet nuget push $PACK -k $NGK -s nuget.org --skip-duplicate done