Skip to content

Commit

Permalink
simplify the build script run on appveyor (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey authored Jun 20, 2020
1 parent fdc9602 commit ac8188c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ environment:
GithubAuthToken:
secure: qgh2y38nOEG/eAnQe0EwNSqMDSXf9akPDwJI5Yasvyiemh5GBbbzkDIleAhGak6i
build_script:
- cmd: PowerShell -Version 2.0 .\build.ps1 -Configuration Release -Experimental -ScriptArgs '--authtoken="%GithubAuthToken%"'
- ps: .\build.ps1 -Configuration Release -Experimental
test:
assemblies:
- '**\Carnac.Tests.dll'
Expand Down
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using Newtonsoft.Json;
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Debug");
var githubRepo = Argument("githubrepo", "Code52/carnac");
var githubAuthToken = Argument("authtoken", "");
var githubAuthToken = Argument("GithubAuthToken", "");

var githubRepoUrl = $"https://github.com/{githubRepo}";
var solutionFile = "./src/Carnac.sln";
Expand Down

0 comments on commit ac8188c

Please sign in to comment.