github nuget pushing removed

This commit is contained in:
Timerix22 2023-01-04 05:28:46 +06:00
parent bfe2c42f63
commit 61d062673c

View File

@ -1,11 +1,11 @@
#!/usr/bin/bash #!/usr/bin/bash
echo enter github api key: #echo enter github api key:
read -rs GHK #read -rs GHK
echo enter nuget api key: echo enter nuget api key:
read -rs NGK read -rs NGK
for PACK in $(find ./nuget -name '*.nupkg'); do 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 dotnet nuget push $PACK -k $NGK -s nuget.org --skip-duplicate
done done