-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrecipe.cake
More file actions
25 lines (19 loc) · 896 Bytes
/
recipe.cake
File metadata and controls
25 lines (19 loc) · 896 Bytes
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
#load nuget:?package=Cake.Recipe&version=4.0.0
Environment.SetVariableNames();
var standardNotificationMessage = "Version {0} of {1} has just been released, this will be available here https://www.nuget.org/packages/{1}, once package indexing is complete.";
BuildParameters.SetParameters(
context: Context,
buildSystem: BuildSystem,
sourceDirectoryPath: "./src",
masterBranchName: "main",
title: "CakeContrib.Guidelines",
shouldRunDotNetCorePack: true,
shouldDocumentSourceFiles: false,
testFilePattern: "/**/*.Tests.csproj", // omit integration-tests in CI-Build
repositoryOwner: "cake-contrib",
twitterMessage: standardNotificationMessage,
shouldRunCodecov: false,
preferredBuildProviderType: BuildProviderType.GitHubActions);
BuildParameters.PrintParameters(Context);
ToolSettings.SetToolSettings(context: Context);
Build.RunDotNetCore();