File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 11on :
2- workflow_call :
2+ workflow_call :
33
44jobs :
5- list-templates :
6- runs-on : ubuntu-latest
7- outputs :
8- templates : ${{ steps.generate-matrix.outputs.templates }}
9- steps :
10- - uses : actions/checkout@v4
11- - name : Generate Matrix
12- id : generate-matrix
13- run : |
14- TEMPLATES="$(find . -not -name '.*' -maxdepth 1 -type d | cut -f2 -d/ | sort | grep -vw chakra_apps | jq -R | jq -s -c)"
15- echo $TEMPLATES
16- echo "templates=$TEMPLATES" >> $GITHUB_OUTPUT
5+ list-templates :
6+ runs-on : ubuntu-latest
7+ outputs :
8+ templates : ${{ steps.generate-matrix.outputs.templates }}
9+ steps :
10+ - uses : actions/checkout@v4
11+ - name : List all templates
12+ id : generate-matrix
13+ run : |
14+ TEMPLATES="$(find . -not -name '.*' -maxdepth 1 -type d | cut -f2 -d/ | sort | grep -vw chakra_apps | jq -R | jq -s -c)"
15+ echo $TEMPLATES
16+ echo "templates=$TEMPLATES" >> $GITHUB_OUTPUT
1717
1818
You can’t perform that action at this time.
0 commit comments