Skip to content

Commit

Permalink
chore: Edit to test-code
Browse files Browse the repository at this point in the history
  • Loading branch information
haruki7049 committed Jul 17, 2024
1 parent 44e2c15 commit 813cf14
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions fetch-releases.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,14 @@ def is_correct_version_url(version: str, url: str) -> bool:
repo: str = "deno"
destination = "sources.json"

godot_info: list = get_all_releases(owner, repo)
save_to_json(godot_info, "releases.json")
print("Done!")
#godot_info: list = get_all_releases(owner, repo)
#save_to_json(godot_info, "releases.json")
#print("Done!")

with open("releases.json", "r") as f:
godot_info = json.load(f)

print(godot_info)

#versions: list = gen_list_of_versions(godot_info)
#urls: list = gen_list_of_download_link(godot_info)
Expand Down

0 comments on commit 813cf14

Please sign in to comment.