mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 02:56:56 +08:00
Changed more set-output lines.
This commit is contained in:
9
.github/workflows/CoverageCollection.yml
vendored
9
.github/workflows/CoverageCollection.yml
vendored
@@ -115,8 +115,13 @@ jobs:
|
||||
else:
|
||||
print(f"File '{coverageRCFile}' not found.")
|
||||
|
||||
print(f"::set-output name=coverage_report_html_directory::{htmlDirectory}")
|
||||
print(f"::set-output name=coverage_report_xml::{xmlFile}")
|
||||
# Write jobs to special file
|
||||
github_output = Path(getenv("GITHUB_OUTPUT"))
|
||||
print(f"GITHUB_OUTPUT: {github_output}")
|
||||
with github_output.open("a+") as f:
|
||||
f.write(f"coverage_report_html_directory={htmlDirectory}\n")
|
||||
f.write(f"coverage_report_xml={xmlFile}\n")
|
||||
|
||||
print(f"DEBUG:\n html={htmlDirectory}\n xml={xmlFile}")
|
||||
|
||||
- name: Collect coverage
|
||||
|
||||
Reference in New Issue
Block a user