2018-01-16 22:05:06 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
for f in BuildOutput/NugetPackages/*.nupkg
|
|
|
|
do
|
|
|
|
echo "Processing $f..."
|
2018-01-18 19:52:19 +00:00
|
|
|
mono tools/nuget.exe push -Verbosity detailed -Source https://www.nuget.org/api/v2/package "$f" $NUGETAPIKEY
|
2018-01-16 22:05:06 +00:00
|
|
|
done
|