-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpost.ts
73 lines (60 loc) · 1.57 KB
/
post.ts
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
import * as core from '@actions/core'
import * as exec from '@actions/exec'
interface PostState {
or8n?: boolean
key?: string
debug?: boolean
id?: string
path?: string
pwOutputDir?: string
matrixIndex?: string
matrixTotal?: string
}
function getPostState(): PostState {
return {
or8n:
core.getState('or8n') === 'true' || core.getState('useAPI') === 'true',
key: core.getState('key') ?? process.env.CURRENTS_RECORD_KEY,
debug: core.getState('debug') === 'true',
id: core.getState('id'),
path: core.getState('path'),
pwOutputDir: core.getState('pwOutputDir'),
matrixIndex: core.getState('matrixIndex'),
matrixTotal: core.getState('matrixTotal')
}
}
async function run(): Promise<void> {
try {
const state = getPostState()
if (state.or8n) {
return
}
// Prepare cache set command with dynamic inputs
const options: string[] = [
`--preset last-run`,
`--matrix-index ${state.matrixIndex}`,
`--matrix-total ${state.matrixTotal}`,
`--continue`
]
if (state.key) {
options.push(`--key ${state.key}`)
}
if (state.id) {
options.push(`--id ${state.id}`)
}
if (state.path) {
options.push(`--path ${state.path}`)
}
if (state.pwOutputDir) {
options.push(`--pw-output-dir ${state.pwOutputDir}`)
}
if (state.debug) {
options.push(`--debug`)
}
const cacheSetCommand = `npx currents cache set ${options.join(' ')}`
await exec.exec(cacheSetCommand)
} catch (error) {
core.setFailed((error as Error).message)
}
}
run()