-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.cake
67 lines (42 loc) · 2.03 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
#addin "Cake.AWS.S3"
#addin "Cake.AWS.CloudFront"
//////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// SETUP / TEARDOWN
///////////////////////////////////////////////////////////////////////////////
Setup(context =>
{
//Executed BEFORE the first task.
Information("Tools dir: {0}.", EnvironmentVariable("CAKE_PATHS_TOOLS"));
});
///////////////////////////////////////////////////////////////////////////////
// TASK DEFINITIONS
///////////////////////////////////////////////////////////////////////////////
Task("Sync-Directory")
.Description("Syncs a directory to S3 using AWS Fallback credentials, requires Cake.AWS.CloudFront")
.Does(async () =>
{
//Scan a local directory for files, comparing the contents against objects already in S3. Deleting missing objects and only uploading changed objects, returning a list of keys that require invalidating.
var settings = Context.CreateSyncSettings();
settings.BucketName = "cake-s3";
settings.SearchFilter = "*.png";
settings.SearchScope = SearchScope.Recursive;
settings.LowerPaths = true;
settings.KeyPrefix = "img/";
var invalidate = await S3SyncUpload(Directory("./images/"), settings);
//Invalidate the list of keys that were either updated or deleted from the sync.
CreateInvalidation("distribution", invalidate, Context.CreateCloudFrontSettings());
});
//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////
Task("Default")
.IsDependentOn("Sync-Directory");
///////////////////////////////////////////////////////////////////////////////
// EXECUTION
///////////////////////////////////////////////////////////////////////////////
RunTarget(target);