-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
64 lines (56 loc) · 1.72 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
import * as core from '@actions/core'
import OSS from 'ali-oss'
import path from 'path'
import fs from 'node:fs/promises'
try {
const accessKeyId = core.getInput('access-key-id')
const accessKeySecret = core.getInput('access-key-secret')
const stsToken = core.getInput('sts-token')
const bucket = core.getInput('bucket')
const endpoint = core.getInput('endpoint')
const region = core.getInput('region')
const internal = core.getBooleanInput('internal')
const cname = core.getBooleanInput('cname')
const isRequestPay = core.getBooleanInput('is-request-pay')
const secure = core.getBooleanInput('secure')
const timeout = core.getInput('timeout')
const client = new OSS({
accessKeyId,
accessKeySecret,
stsToken,
bucket,
endpoint,
region,
internal,
cname,
isRequestPay,
secure,
timeout,
})
async function collectFilePath(dir, arr=[]) {
const files = await fs.readdir(dir)
for (const file of files) {
const currentPath = path.join(dir, file)
const stat = await fs.stat(currentPath)
if (stat.isFile()) arr.push(currentPath)
if (stat.isDirectory()) arr.push(...await collectFilePath(currentPath))
}
return arr
}
async function put(remotePath, localPath) {
try {
await client.put( remotePath, localPath )
} catch (e) {
console.warn(e)
}
}
const __dirname = process.env['GITHUB_WORKSPACE']
const basePath = path.normalize(path.join(__dirname, 'dist'))
const needToUploadPath = await collectFilePath(basePath)
for (const localPath of needToUploadPath) {
const remotePath = path.normalize(localPath.replace(basePath + '/', ''))
put(remotePath, localPath)
}
} catch (err) {
core.setFailed(err.message)
}