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

Commit

Permalink
adding build number when not tagged
Browse files Browse the repository at this point in the history
  • Loading branch information
alhardy committed May 28, 2017
1 parent 4d44206 commit 00c4cca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ Task("Pack")
{
versionSuffix = preReleaseSuffix + "-" + buildNumber.ToString("D4");
}
else if (!AppVeyor.Environment.Repository.Tag.IsTag)
{
versionSuffix = "-" + buildNumber.ToString("D4");
}
Context.Information("Packing using versionSuffix: " + versionSuffix);
Expand Down

0 comments on commit 00c4cca

Please sign in to comment.