Skip to content

Commit 59d6292

Browse files
Edited grep pattern to only get parent dir in checklist md to pdf workflow
Signed-off-by: Natalia Luzuriaga <[email protected]>
1 parent 1e15f70 commit 59d6292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/checklistMarkdownToPDF.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
ALL_CHANGED_FILES: ${{ steps.get-dirs.outputs.all_changed_files }}
3131
run: |
3232
# Obtain changed tier directories and format into array
33-
DIRS=$(echo "$ALL_CHANGED_FILES" | grep -oE 'tier[^ ]*' | sed 's/^/"/; s/$/"/' | paste -sd, -)
33+
DIRS=$(echo "$ALL_CHANGED_FILES" | grep -oE 'tier[^ /]*' | sed 's/^/"/; s/$/"/' | paste -sd, -)
3434
3535
# Output the array
3636
TIER_DIRS="[$DIRS]"

0 commit comments

Comments
 (0)