Skip to content

Commit

Permalink
fix retesting drafts of legay models
Browse files Browse the repository at this point in the history
  • Loading branch information
FynnBe committed Jun 14, 2024
1 parent 77328f4 commit 04b86a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/retest_all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
collection_draft = json.load(f)
versions = [{"id": entry.get("nickname", entry["id"]), "v": "latest"} for entry in collection["collection"]]
versions.extend([{"id": entry["id"], "v": "draft"} for entry in collection_draft["collection"]])
versions.extend([{"id": entry.get("nickname", entry["id"]), "v": "draft"} for entry in collection_draft["collection"]])
matrix = {"include": versions}
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
print(f"matrix={matrix}", file=f)
Expand Down

0 comments on commit 04b86a4

Please sign in to comment.