We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d81dc29 commit 1c74b6dCopy full SHA for 1c74b6d
.github/workflows/scripts/generate_matrix.py
@@ -35,10 +35,8 @@ def main():
35
rows = [{"app":"noop","board":"noop"}]
36
37
matrix = {"include": rows}
38
- # Emit as a job output
39
- with open(os.environ["GITHUB_OUTPUT"], "a") as fh:
40
- fh.write(f"matrix={json.dumps(matrix)}\n")
41
-
+ print(json.dumps(matrix, indent=2))
+
42
print(f"Generated {len(rows)} matrix rows from {TEMPLATES_XML}")
43
44
if __name__ == "__main__":
0 commit comments