SDL2-CS/gitlab-ci/deploy.sh

10 lines
158 B
Bash
Raw Normal View History

2018-09-09 21:37:49 +00:00
#!/bin/bash
set -e
nuget setApiKey $NUGET_API_KEY -verbosity quiet
for package in `find *.nupkg`; do
nuget push $package -source https://nuget.org/
done