forked from dawidd6/action-download-artifact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
129 lines (104 loc) · 3.91 KB
/
Copy pathmain.js
File metadata and controls
129 lines (104 loc) · 3.91 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
const core = require('@actions/core')
const github = require('@actions/github')
const AdmZip = require('adm-zip')
const filesize = require('filesize')
const pathname = require('path')
const fs = require("fs")
async function main() {
try {
const token = core.getInput("github_token", { required: true })
const workflow = core.getInput("workflow", { required: true })
const [owner, repo] = core.getInput("repo", { required: true }).split("/")
const path = core.getInput("path", { required: true })
const name = core.getInput("name")
let branch = core.getInput("branch")
let pr = core.getInput("pr")
let commit = core.getInput("commit")
const client = github.getOctokit(token)
console.log("==> Repo:", owner + "/" + repo)
if (branch) {
console.log("==> Branch:", branch)
if (pr) {
console.log("==> Branch and PR can not be defined at the same time, ignoring PR:", pr)
pr = undefined
}
if (commit) {
console.log("==> Branch and Commit can not be defined at the same time, ignoring Commit:", commit)
commit = undefined
}
}
if (pr) {
console.log("==> PR:", pr)
const pull = await client.pulls.get({
owner: owner,
repo: repo,
pull_number: pr,
})
commit = pull.data.head.sha
}
if (commit) {
console.log("==> Commit:", commit)
}
let run
const endpoint = "GET /repos/:owner/:repo/actions/workflows/:id/runs"
const params = {
owner: owner,
repo: repo,
id: workflow,
branch: branch
}
for await (const runs of client.paginate.iterator(endpoint, params)) {
run = runs.data.find((run) => {
if (commit) {
return run.head_sha == commit
}
else {
// No PR or commit was specified just return the first one.
// The results appear to be sorted from API, so the most recent is first.
// Just check if workflow run completed.
return run.status == "completed"
}
})
if (run) {
break
}
}
console.log("==> Run:", run.id)
let artifacts = await client.actions.listWorkflowRunArtifacts({
owner: owner,
repo: repo,
run_id: run.id,
})
// One artifact or all if `name` input is not specified.
if (name) {
artifacts = artifacts.data.artifacts.filter((artifact) => {
return artifact.name == name
})
} else {
artifacts = artifacts.data.artifacts
}
for (const artifact of artifacts) {
console.log("==> Artifact:", artifact.id)
const size = filesize(artifact.size_in_bytes, { base: 10 })
console.log("==> Downloading:", name + ".zip", `(${size})`)
const zip = await client.actions.downloadArtifact({
owner: owner,
repo: repo,
artifact_id: artifact.id,
archive_format: "zip",
})
const dir = name ? path : pathname.join(path, artifact.name)
fs.mkdirSync(dir, { recursive: true })
const adm = new AdmZip(Buffer.from(zip.data))
adm.getEntries().forEach((entry) => {
const action = entry.isDirectory ? "creating" : "inflating"
const filepath = pathname.join(dir, entry.entryName)
console.log(` ${action}: ${filepath}`)
})
adm.extractAllTo(dir, true)
}
} catch (error) {
core.setFailed(error.message)
}
}
main()