Skip to content

Commit ae84cbe

Browse files
committed
argh
1 parent 54d87a5 commit ae84cbe

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/nightly-build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ jobs:
1010
toollist:
1111
runs-on: ubuntu-latest
1212
outputs:
13-
tools: ${{ steps.tools.outputs }}
13+
tools: ${{ steps.tools.outputs.tools }}
1414
steps:
1515
- uses: actions/checkout@master
1616
- name: Tools
1717
id: tools
1818
run: |
19-
cat README.md | grep -- --tool-- | grep -v -- --no-test-- | tr '[]' ' ' | awk '{print $6}' | jq -R . | jq -c -s . >> "$GITHUB_OUTPUT"
19+
(
20+
echo -n "tools=";
21+
cat README.md | grep -- --tool-- | grep -v -- --no-test-- | tr '[]' ' ' | awk '{print $6}' | jq -R . | jq -c -s .;
22+
) >> "$GITHUB_OUTPUT"
2023
toolcheck:
2124
needs: toollist
2225
strategy:

0 commit comments

Comments
 (0)