-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
75 lines (69 loc) · 1.92 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
const core = require('@actions/core');
const S3 = require('aws-sdk/clients/s3');
const fs = require('fs');
const path = require('path');
const shortid = require('shortid');
const { lookup } = require('mime-types');
const AWS_KEY_ID = core.getInput('aws_key_id', {
required: true
});
const SECRET_ACCESS_KEY = core.getInput('aws_secret_access_key', {
required: true
});
const BUCKET = core.getInput('aws_bucket', {
required: true
});
const SOURCE_DIR = core.getInput('source_dir', {
required: true
});
const DESTINATION_DIR = core.getInput('destination_dir', {
required: false
});
const s3 = new S3({
accessKeyId: AWS_KEY_ID,
secretAccessKey: SECRET_ACCESS_KEY
});
const destinationDir = DESTINATION_DIR === '/' ? shortid() : DESTINATION_DIR;
let paths = [SOURCE_DIR]
function upload(params) {
return new Promise(resolve => {
s3.upload(params, (err, data) => {
console.log('error ', err)
if (err) core.error(err);
core.info(`uploaded - ${data.Key}`);
core.info(`located - ${data.Location}`);
resolve(data.Location);
});
});
}
function run() {
const sourceDir = path.join(process.cwd(), SOURCE_DIR);
return Promise.all(
paths.map(p => {
const fileStream = fs.createReadStream(p);
const bucketPath = path.join(destinationDir, path.relative(sourceDir, p));
console.log(BUCKET, 'BUCKET')
const key = p.split('/').pop()
console.log('key', key)
const params = {
Bucket: BUCKET,
ACL: 'public-read',
Body: fileStream,
Key: key,
ContentType: lookup(p) || 'text/plain'
};
return upload(params);
})
);
}
run()
.then(locations => {
core.info(`object key - ${destinationDir}`);
core.info(`object locations - ${locations}`);
core.setOutput('object_key', destinationDir);
core.setOutput('object_locations', locations);
})
.catch(err => {
core.error(err);
core.setFailed(err.message);
});