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 f904115 commit ee60e81Copy full SHA for ee60e81
.github/workflows/build-dev-container.yaml
@@ -18,12 +18,12 @@ jobs:
18
id: set-matrix
19
run: |
20
FOLDERS=$(ls -d templates/*/)
21
- FOLDERS=${FOLDERS//\//} # remove trailing slashes
+ FOLDERS=${FOLDERS%/} # remove trailing slashes
22
FOLDERS=${FOLDERS//templates\//} # remove leading 'templates/'
23
FOLDERS_JSON=$(echo "$FOLDERS" | jq -R -s -c 'split("\n")[:-1]')
24
echo "FOLDERS_JSON: $FOLDERS_JSON"
25
echo "::set-output name=matrix::${FOLDERS_JSON}"
26
-
+
27
build:
28
runs-on: ubuntu-latest
29
strategy:
0 commit comments