in notifier.py [0:0]
def compile_link_file(links_win: List[str], links_mac: List[str]):
print("Compiling the current artifact link file...")
links_mac.sort()
links_win.sort()
output_file_path = os.path.join(time_now, "full_report.txt")
content_type = get_content_type(output_file_path)
bucket = storage_client.bucket(bucket_name)
blob = bucket.blob(output_file_path)
with blob.open("w", content_type=content_type) as f:
f.write("Windows Artifacts:\n\n")
for url in links_win:
f.write(url + "\n")
f.write("\nMac Artifacts:\n\n")
for url in links_mac:
f.write(url + "\n")
return f"{root_url}{time_now}/full_report.txt"