mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 04:45:39 +00:00
10 lines
211 B
Bash
Executable file
10 lines
211 B
Bash
Executable file
#!/bin/bash
|
|
|
|
sudo nuget update -self
|
|
|
|
for f in BuildOutput/NugetPackages/*.nupkg
|
|
do
|
|
echo "Processing $f..."
|
|
nuget push -Verbosity detailed -Source https://www.nuget.org/api/v2/package "$f" $NUGETAPIKEY
|
|
done
|