Spotify.NET/SpotifyAPI/publish.cmd

12 lines
166 B
Batchfile
Raw Normal View History

2017-07-16 21:47:06 +01:00
if "%APPVEYOR_REPO_TAG %" == "true" (
echo Publishing...
cd ./SpotifyAPI
nuget pack -Version %APPVEYOR_REPO_TAG_NAME%
cd ../
) else (
echo Skipping Publishing
)