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