TLSharp/scripts/publish.sh

7 lines
143 B
Bash
Raw Normal View History

2020-01-08 13:05:58 +01:00
#!/usr/bin/env bash
set -e
cd ./TLSharp.Core; dotnet nuget push -k ${NUGET_KEY} -s ${NUGET_SERVER} $(ls -dt bin/Release/* | head -1)
exit 0