Skip to content

Commit 8041a5a

Browse files
committed
ensure valid json format
1 parent 8237925 commit 8041a5a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/list-templates.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
id: generate-matrix
1313
run: |
1414
TEMPLATES="$(find . -not -name '.*' -maxdepth 1 -type d | cut -f2 -d/ | sort | grep -vw chakra_apps | jq -R | jq -s -c)"
15+
TEMPLATES=$(echo "$TEMPLATES" | jq -c '.') # Ensure valid JSON format
1516
echo "templates=$TEMPLATES" >> $GITHUB_OUTPUT
1617
- name: Debug output
1718
run: |

0 commit comments

Comments
 (0)