generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
67 lines (49 loc) · 1.83 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
const core = require('@actions/core')
const glob = require('@actions/glob')
const renderer = require('./renderer')
const path = require('path')
const fs = require('fs').promises
// most @actions toolkit packages have async methods
async function run() {
try {
const input = core.getInput('input', {required: true})
const output = core.getInput('output')
const hard_fail = core.getInput('hard-fail').toLowerCase() === 'true'
const log = core.getInput('enable-log').toLowerCase() === 'true'
const symlinks = core.getInput('follow-symbolic-links').toLowerCase() === 'true'
core.debug(`input: ${input}`)
core.debug(`output: ${output}`)
core.debug(`hard_fail: ${hard_fail}`)
core.debug(`log: ${log}`)
core.debug(`symlinks: ${symlinks}`)
if(output)
await fs.mkdir(output, {recursive: true})
const globber = await glob.create(input, { followSymbolicLinks: symlinks })
for await (const file of globber.globGenerator()) {
let stat = await fs.stat(file)
if(!stat.isFile())
continue
let handle = await fs.open(file, 'r+')
const data = await handle.readFile('utf8')
const rendered = renderer.render(data, /\$\{([A-Z_-]+)\}/gm, hard_fail)
if(log) {
core.debug(`===== ORIGINAL: ${file}`)
core.debug(data)
core.debug("===== PROCESSED: ")
core.debug(rendered)
}
if(output) {
await handle.close();
const basename = path.basename(file)
const outputName = path.join(output, basename)
handle = await fs.open(outputName, 'w+')
}
let tmp = await handle.write(rendered, 0)
await handle.truncate(tmp.bytesWritten)
await handle.close();
}
} catch (error) {
core.setFailed(error.message);
}
}
run();