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 204c0a4 commit 5f47feaCopy full SHA for 5f47fea
.github/workflows/build.yaml
@@ -69,10 +69,10 @@ jobs:
69
70
# Temp globs
71
# The action will need to get this from inputs somehow
72
- readarray -t -d $'\t' GLOBS < <(yq --output-format=tsv --null-input '["*.adoc", ".github/**"]')
+ # This is cursed... we use `.[] | .` to remove quotes and any yaml formatting.
73
+ readarray -t GLOBS < <(yq --null-input '["*.adoc", ".github/**"]' | yq '.[] | .')
74
75
for GLOB in "${GLOBS[@]}"; do
- echo "$GLOB"
76
git diff --name-only "${BASE_SHA}.." -- "$GLOB"
77
done
78
0 commit comments