TLSharp/scripts/publish.sh
2020-01-09 11:02:15 +03:00

7 lines
143 B
Bash
Executable file

#!/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