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 8c09705 commit 61648f4Copy full SHA for 61648f4
.github/workflows/parallel.yml
@@ -11,7 +11,7 @@ jobs:
11
name: Collect
12
runs-on: ubuntu-latest
13
outputs:
14
- TEST_MATRIX: "${{ steps.matrix.outputs.TEST_DIRS }}"
+ TEST_MATRIX: "${{ steps.matrix.outputs.TEST_MATRIX }}"
15
FOO: "${{ steps.foo.outputs.FOO }}"
16
BAR: "${{ steps.bar.outputs.BAR }}"
17
@@ -53,8 +53,8 @@ jobs:
53
print(test_dirs)
54
print(environ["GITHUB_OUTPUT"])
55
with open(environ["GITHUB_OUTPUT"], "a", encoding="utf-8") as f:
56
- print(f"TEST_MATRIX='{test_dirs}'")
57
- print(f"TEST_MATRIX='{test_dirs}'", file=f)
+ print(f'TEST_MATRIX="{test_dirs}"')
+ print(f'TEST_MATRIX="{test_dirs}"', file=f)
58
59
- id: bar
60
run: echo 'BAR=456' >> "${GITHUB_OUTPUT}"
0 commit comments