Skip to content

Commit 66ab0ed

Browse files
committed
fix stuff maybe
1 parent b1ed44f commit 66ab0ed

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
on:
2-
workflow_call:
2+
workflow_call:
33

44
jobs:
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

0 commit comments

Comments
 (0)