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 06550d8 commit d5d6e66Copy full SHA for d5d6e66
.github/workflows/scripts/generate_matrix.py
@@ -27,12 +27,12 @@ def main():
27
for board in boards:
28
rows.append({
29
"app": app,
30
- "board": board,
+ "board": board
31
})
32
33
if not rows:
34
# Avoid empty matrix which makes Actions error out
35
- rows = {"app":"noop","board":"noop"}
+ rows = [{"app":"noop","board":"noop"}]
36
37
matrix = {"include": rows}
38
print(json.dumps(matrix, indent=2))
0 commit comments