Skip to content

Commit

Permalink
Fix expected artifact file name
Browse files Browse the repository at this point in the history
  • Loading branch information
soininen committed May 22, 2024
1 parent a008b85 commit 4dd774b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def request_artifacts() -> list[Artifact]:
response = raw_response.json()
response_artifacts = response["artifacts"]
for response_artifact in response_artifacts:
if response_artifact["expired"] or not response_artifact["name"].startswith("Spine-Toolbox-win "):
if response_artifact["expired"] or not response_artifact["name"].startswith("Spine-Toolbox-win"):
continue
workflow_run = response_artifact["workflow_run"]
if workflow_run["head_branch"] != "master":
Expand Down

0 comments on commit 4dd774b

Please sign in to comment.