Skip to content

Commit

Permalink
fix version -> version_number
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Apr 9, 2024
1 parent 7b59f88 commit 1cbc752
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/retest_all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with open("collection.json") as f:
collection = json.load(f)
published = [{"id": entry["id"], "v": entry["version"]} for entry in collection["collection"]]
published = [{"id": entry["id"], "v": entry["version_number"]} for entry in collection["collection"]]
matrix = {"include": published}
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
print(f"matrix={matrix}", file=f)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def maybe_swap_with_thumbnail(
entry["nickname_icon"] = entry["id_emoji"]
entry["entry_source"] = client.get_file_url(rdf_s3_path)
entry["rdf_source"] = entry["entry_source"]
entry["version"] = v
entry["version_number"] = v
entry["versions"] = versions
return entry

Expand Down

0 comments on commit 1cbc752

Please sign in to comment.