Skip to content

Commit

Permalink
Update version to 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
burakince committed Apr 2, 2018
1 parent 613986e commit 0a2922f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ var package = "DependencyCheck.Runner.Tool";
var apiKey = EnvironmentVariable("NUGET_API_KEY") ?? "abcdef0123456789";
var buildNumber = EnvironmentVariable("APPVEYOR_BUILD_NUMBER") ?? "1";

var version = "3.1.1";
var toolVersion = "3.1.1";
var version = EnvironmentVariable("APPVEYOR_REPO_TAG_NAME") ?? "3.1.2";
var toolVersion = version;

Setup(context =>
{
Expand Down Expand Up @@ -74,7 +74,7 @@ Task("Publish")
};

var packagePath = "./nuget/" + package + "." + version + ".nupkg";

Information("Publishing: {0}", packagePath);
NuGetPush(packagePath, new NuGetPushSettings
{
Source = "https://www.nuget.org/api/v2/package",
Expand Down

0 comments on commit 0a2922f

Please sign in to comment.