We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1570dfb commit 2877a3dCopy full SHA for 2877a3d
.github/workflows/ruby.yaml
@@ -30,8 +30,8 @@ jobs:
30
for i in "${paths[@]}"; do
31
projects+=($(dirname "$i"))
32
done
33
- echo "${projects}" | jq --raw-input 'split(" ")' > output
34
- echo "$output"
+ output=$(echo "${projects}" | jq --raw-input 'split(" ")')
+ echo "OUTPUT: $output"
35
echo "projects=$output" >> $GITHUB_OUTPUT
36
- name: Show all matching projects
37
shell: bash
0 commit comments