GtkSharp/pushnuget.sh

8 lines
201 B
Bash
Raw Normal View History

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