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 54d87a5 commit ae84cbeCopy full SHA for ae84cbe
.github/workflows/nightly-build.yml
@@ -10,13 +10,16 @@ jobs:
10
toollist:
11
runs-on: ubuntu-latest
12
outputs:
13
- tools: ${{ steps.tools.outputs }}
+ tools: ${{ steps.tools.outputs.tools }}
14
steps:
15
- uses: actions/checkout@master
16
- name: Tools
17
id: tools
18
run: |
19
- cat README.md | grep -- --tool-- | grep -v -- --no-test-- | tr '[]' ' ' | awk '{print $6}' | jq -R . | jq -c -s . >> "$GITHUB_OUTPUT"
+ (
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"
23
toolcheck:
24
needs: toollist
25
strategy:
0 commit comments