Skip to content

Commit

Permalink
Merge pull request #22 from danwalmsley/fix-publish-nugets
Browse files Browse the repository at this point in the history
fix publish on tags.
  • Loading branch information
danwalmsley authored May 16, 2017
2 parents bf7d224 + d70439b commit f405aff
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,7 @@ Task("Publish-MyGet")
.WithCriteria(() => !isLocalBuild)
.WithCriteria(() => !isPullRequest)
.WithCriteria(() => isMainRepo)
.WithCriteria(() => isMasterBranch)
.WithCriteria(()=> isReleasable)
.WithCriteria(() => isMasterBranch)
.WithCriteria(()=> isRunningOnAppVeyor)
.WithCriteria(()=> isTagged)
.Does(() =>
Expand Down

0 comments on commit f405aff

Please sign in to comment.