blob: f665e7f0ec8350b85d5166d5a2c5f6d1858edd7f (
plain)
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
|
import io
import os
import sys
import zipfile
import requests
RUNS_URL = (
"https://api.github.com/repos/pyca/infra/actions/workflows/"
"build-openssl.yml/runs?branch=master&status=success"
)
def get_response(url, token):
response = requests.get(url, headers={"Authorization": "token " + token})
if response.status_code != 200:
raise ValueError("Got HTTP {} fetching {}: ".format(
response.code, url, response.content
))
return response
def main(target):
token = os.environ["GITHUB_TOKEN"]
print("Looking for: {}".format(target))
response = get_response(RUNS_URL, token).json()
artifacts_url = response["workflow_runs"][0]["artifacts_url"]
response = get_response(artifacts_url, token).json()
for artifact in response["artifacts"]:
if artifact["name"] == target:
print("Found artifact")
response = get_response(
artifact["archive_download_url"], token
)
zipfile.ZipFile(io.BytesIO(response.content)).extractall(
"C:/{}".format(artifact["name"])
)
return
if __name__ == "__main__":
main(sys.argv[1])
|