about summary refs log tree commit diff
path: root/scripts/publish.sh
blob: ac59da0ee5ab74c6ae0c65fee2bcee035e199b79 (plain) (blame)
1
2
3
4
5
nom build .\#nugetArtifactDir.x86_64-linux -j4 -L
for p in ./result/*.nupkg; do
    echo "Pushing $p to NuGet..."
    dotnet nuget push "$p" -k ${NUGET_KEY} --source https://api.nuget.org/v3/index.json --skip-duplicate
done