File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1
1
if " %APPVEYOR_REPO_TAG% " == " true" (
2
2
3
3
echo Publishing...
4
+
5
+ nuget source Add -Name " GitHub" -Source " https://nuget.pkg.github.com/JohnnyCrazy/index.json" -UserName JohnnyCrazy -Password %GH_TOKEN%
6
+
4
7
cd ./SpotifyAPI.Web
5
8
dotnet pack -c Release SpotifyAPI.Web.csproj -p:PackageVersion=%APPVEYOR_REPO_TAG_NAME%
6
9
nuget push ./bin/Release/SpotifyAPI.Web.%APPVEYOR_REPO_TAG_NAME% .nupkg -ApiKey %NUGET_TOKEN% -NonInteractive -Source https://www.nuget.org/api/v2/package
10
+ nuget push ./bin/Release/SpotifyAPI.Web.%APPVEYOR_REPO_TAG_NAME% .nupkg -NonInteractive -Source GitHub
7
11
8
12
cd ../SpotifyAPI.Web.Auth
9
13
dotnet pack -c Release SpotifyAPI.Web.Auth.csproj -p:PackageVersion=%APPVEYOR_REPO_TAG_NAME%
10
14
nuget push ./bin/Release/SpotifyAPI.Web.Auth.%APPVEYOR_REPO_TAG_NAME% .nupkg -ApiKey %NUGET_TOKEN% -NonInteractive -Source https://www.nuget.org/api/v2/package
15
+ nuget push ./bin/Release/SpotifyAPI.Web.Auth.%APPVEYOR_REPO_TAG_NAME% .nupkg -NonInteractive -Source GitHub
11
16
12
17
cd ..
13
18
You can’t perform that action at this time.
0 commit comments