We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1dc6cc commit e65df09Copy full SHA for e65df09
ci/download_gha_artifacts.py
@@ -51,7 +51,7 @@ def utc2local(timestring):
51
r = requests.get(f"https://api.github.com/repos/{repo_owner}/actions/artifacts")
52
dists = [a for a in r.json()["artifacts"] if a["name"] == "dist"]
53
if not dists:
54
- print(f"No recent dists!")
+ print("No recent dists!")
55
else:
56
latest = max(dists, key=lambda a: a["created_at"])
57
print(f"Artifacts created at {utc2local(latest['created_at'])}")
0 commit comments