Skip to content
This repository has been archived by the owner on Mar 26, 2019. It is now read-only.

Commit

Permalink
remove master branch check on auto release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
alhardy committed Apr 22, 2017
1 parent 74ca981 commit b3be969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Task("Clean")

Task("ReleaseNotes")
.IsDependentOn("Clean")
.WithCriteria(() => AppVeyor.IsRunningOnAppVeyor && AppVeyor.Environment.Repository.Tag.IsTag && AppVeyor.Environment.Repository.Branch == "master")
.WithCriteria(() => AppVeyor.IsRunningOnAppVeyor && AppVeyor.Environment.Repository.Tag.IsTag)
.Does(() =>
{
var preRelease = preReleaseSuffix != null;
Expand Down

0 comments on commit b3be969

Please sign in to comment.