mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
22 lines
587 B
Bash
Executable File
22 lines
587 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Publishing..."
|
|
|
|
cd ./SpotifyAPI.Web
|
|
dotnet pack -c Release SpotifyAPI.Web.csproj -p:PackageVersion="$RELEASE_VERSION"
|
|
nuget push "./bin/Release/SpotifyAPI.Web.$RELEASE_VERSION.nupkg"\
|
|
-ApiKey "$NUGET_TOKEN"\
|
|
-NonInteractive\
|
|
-Source https://www.nuget.org/api/v2/package
|
|
|
|
cd ../SpotifyAPI.Web.Auth
|
|
dotnet pack -c Release SpotifyAPI.Web.Auth.csproj -p:PackageVersion="$RELEASE_VERSION"
|
|
nuget push "./bin/Release/SpotifyAPI.Web.Auth.$RELEASE_VERSION.nupkg"\
|
|
-ApiKey "$NUGET_TOKEN"\
|
|
-NonInteractive\
|
|
-Source https://www.nuget.org/api/v2/package
|
|
|
|
cd ..
|