workflows: Replace spaces from artifact names

It made them impractical to use as file names.
This commit is contained in:
2022-04-09 08:59:50 +02:00
parent 9a19416731
commit ebd7edcc74
4 changed files with 45 additions and 45 deletions

View File

@ -237,7 +237,7 @@ def get_test_job(*, config, test_config, test_id, version_flavor, jobs):
"if": "always()",
"uses": "actions/upload-artifact@v2",
"with": {
"name": f"pytest results {test_id} ({version_flavor.value})",
"name": f"pytest-results_{test_id}_{version_flavor.value}",
"path": "pytest.xml",
},
},