-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.cake
78 lines (63 loc) · 2.21 KB
/
build.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#tool "nuget:https://api.nuget.org/v3/index.json?package=Wyam&version=2.2.9"
#addin "nuget:https://api.nuget.org/v3/index.json?package=Cake.Wyam&version=2.2.12"
#addin "nuget:https://api.nuget.org/v3/index.json?package=NetlifySharp&version=1.1.0"
using NetlifySharp;
using System.Net.Http;
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
//////////////////////////////////////////////////////////////////////
// TASKS
//////////////////////////////////////////////////////////////////////
Task("Build")
.Does(() =>
{
Wyam(new WyamSettings
{
Recipe = "Blog",
Theme = "CleanBlog",
UpdatePackages = true
});
});
Task("Preview")
.Does(() =>
{
Wyam(new WyamSettings
{
Recipe = "Blog",
Theme = "CleanBlog",
UpdatePackages = true,
Preview = true,
Watch = true
});
});
Task("Deploy")
.Does(async () =>
{
var netlifyToken = EnvironmentVariable("NETLIFY_TOKEN");
if(string.IsNullOrEmpty(netlifyToken))
{
throw new Exception("Could not get Netlify token environment variable");
}
var siteId = EnvironmentVariable("NETLIFY_SITE_ID");
if(string.IsNullOrEmpty(siteId))
{
throw new Exception("Could not get Netlify Site Id environment variable");
}
Information("Deploying output to Netlify");
var client = new NetlifyClient(netlifyToken, new HttpClient());
var site =await client.UpdateSiteAsync(MakeAbsolute(Directory("./output")).FullPath, siteId);
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Preview");
Task("BuildServer")
.IsDependentOn("Build")
.IsDependentOn("Deploy");
//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////
RunTarget(target);