-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
recipe.cake
27 lines (23 loc) · 879 Bytes
/
recipe.cake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#load "nuget:https://www.nuget.org/api/v2?package=Cake.VsCode.Recipe&version=0.4.0"
if(BuildSystem.IsLocalBuild)
{
Environment.SetVariableNames(
githubTokenVariable: "CAKE_GITHUB_PAT"
);
}
else
{
Environment.SetVariableNames();
}
BuildParameters.SetParameters(context: Context,
buildSystem: BuildSystem,
title: "cake-vscode",
repositoryOwner: "cake-build",
repositoryName: "cake-vscode",
appVeyorAccountName: "cakebuild",
shouldRunGitVersion: true,
vsceVersionNumber:"1.78.0",
typeScriptVersionNumber: "4.5.3",
marketPlacePublisher: "cake-build");
BuildParameters.PrintParameters(Context);
Build.Run();