-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
97 lines (92 loc) · 2.44 KB
/
index.js
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
const { getInput, setFailed } = require('@actions/core');
const {
publishLambdaLayer,
publishS3LayerArchive,
getArchiveSize,
deleteTemporaryArchiveFromS3,
refreshLambdaLayerVersion,
listLambdaFunctionsWithLayer
} = require('./helper');
(async () => {
try {
const accessKeyId = getInput('access_key_id');
const secretAccessKey = getInput('secret_access_key');
const layerName = getInput('layer_name');
const archive = getInput('archive');
const region = getInput('region');
const runtimes = getInput('runtimes') ? JSON.parse(getInput('runtimes')) : [];
const architectures = getInput('architectures') ? JSON.parse(getInput('architectures')) : [];
const s3Bucket = getInput('s3_bucket');
const functionNames = JSON.parse(getInput('functions'));
const autoUpdate = getInput('auto_update') || false;
console.log(runtimes, architectures);
const creds = { region, accessKeyId, secretAccessKey };
const size = getArchiveSize(archive);
console.log(`Archive size is ${size}`);
let layerResponse;
if (size > 10000000) {
if (!s3Bucket) {
setFailed('Param s3_bucket is required if layer size exceeds 10MB.');
}
// upload s3 archive
await publishS3LayerArchive({
...creds,
s3Bucket,
archive,
layerName
});
layerResponse = await publishLambdaLayer({
...creds,
archive,
s3Bucket,
layerName,
architectures,
runtimes,
});
/**
* try to remove the archive from s3 bucket
*
*/
await deleteTemporaryArchiveFromS3({
...creds,
s3Bucket,
s3Key: `${layerName}.zip`
});
/**
* refresh the lambda functions to use the latest layer
*/
} else {
layerResponse = await publishLambdaLayer({
...creds,
archive,
layerName,
architectures,
runtimes,
});
}
if (functionNames.length) {
// trigger functions update
await refreshLambdaLayerVersion({
...creds,
functionNames,
layerARN: layerResponse.LayerVersionArn
});
}
if (autoUpdate) {
// find automatically all matching functions
const foundFunctionNames = await listLambdaFunctionsWithLayer({
...creds,
layerARN: layerResponse.LayerVersionArn,
})
console.log('The following functions will be updated :', foundFunctionNames)
// trigger functions update
await refreshLambdaLayerVersion({
...creds,
functionNames: foundFunctionNames,
layerARN: layerResponse.LayerVersionArn
});
}
} catch (err) {
setFailed(err.message);
}
})();