Skip to content

Commit

Permalink
Save nupkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Hathcock committed Sep 29, 2016
1 parent 54a5622 commit 5627018
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 9 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
- tools -> build.cake
- tools -> build.ps1

artifacts:
- path: nupkgs\*.nupkg
name: NuPkgs

# configuration for "default" branch
-
init:
Expand All @@ -30,4 +34,8 @@

cache:
- tools -> build.cake
- tools -> build.ps1
- tools -> build.ps1

artifacts:
- path: nupkgs\*.nupkg
name: NuPkgs
10 changes: 1 addition & 9 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -216,20 +216,12 @@ Task("Publish")
// TASK TARGETS
//////////////////////////////////////////////////////////////////////

Task("PRBuild")
.IsDependentOn("Restore")
.IsDependentOn("Build")
.IsDependentOn("Test");

Task("MasterBuild")
Task("Default")
.IsDependentOn("Restore")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Pack");

Task("Default")
.IsDependentOn("PRBuild");

//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit 5627018

Please sign in to comment.