generated from jacobtomlinson/python-container-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
72 lines (56 loc) · 2.04 KB
/
main.py
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
import time
import json
import os
import urllib3
TOKEN = os.environ["INPUT_TOKEN"]
ARTIFACT_NAME = os.environ["INPUT_ARTIFACT_NAME"]
NAME = os.environ["INPUT_RENAME"] or ARTIFACT_NAME
REPO = os.getenv("INPUT_REPO") or os.getenv("GITHUB_REPOSITORY")
WAIT_SECONDS = int(os.getenv("INPUT_WAIT_SECONDS") or "60")
WAIT_SLEEP = 0.5
GITHUB_OUTPUT = os.environ["GITHUB_OUTPUT"]
artifacts_url = f"https://api.github.com/repos/{REPO}/actions/artifacts"
headers = {
"Authorization": f"token {TOKEN}",
"User-Agent": "Python",
}
http = urllib3.PoolManager()
def get_artifact(name):
print(f"Download `{name}` from: {artifacts_url}")
t_started = time.time()
waiting = True
etag = None
while waiting:
if etag:
resp = http.request(
"GET",
artifacts_url,
headers={**headers, "If-None-Match": etag},
fields={"name": ARTIFACT_NAME},
)
else:
resp = http.request(
"GET", artifacts_url, headers=headers, fields={"name": ARTIFACT_NAME}
)
etag = resp.headers.get("etag")
if resp.status == 200:
data = json.loads(resp.data.decode("utf-8"))
return data["artifacts"][0] if data["artifacts"] else None
waiting = time.time() - t_started < WAIT_SECONDS
time.sleep(1)
print("Waiting...", etag, resp.status)
def set_output(name, value):
with open(GITHUB_OUTPUT, "a") as github_output:
github_output.write(f"{name}={value}\n")
def download_artifact(name, new_name):
artifact = get_artifact(name)
if artifact is None:
set_output("error", f"Artifact not found: {name}")
exit(1)
r = http.request("GET", artifact["archive_download_url"], headers=headers)
with open(new_name, "wb") as f:
f.write(r.data)
set_output("success", "Artifact downloaded: {}".format(artifact["name"]))
set_output("commit", artifact["workflow_run"]["head_sha"])
if __name__ == "__main__":
download_artifact(ARTIFACT_NAME, NAME)