We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b94604d commit 90682efCopy full SHA for 90682ef
1 file changed
.github/workflows/markdown_equations.yml
@@ -79,8 +79,10 @@ jobs:
79
80
# Generate and commit equation SVG files for README.md files:
81
- name: 'Generate and commit equation SVG files'
82
+ env:
83
+ CHANGED_PACKAGES: ${{ join( fromJSON( steps.changed-packages.outputs.packages ), '\n' )}}
84
run: |
- files=$(${{ join( fromJSON( steps.changed-packages.outputs.packages ), '\n' )}} | sed 's/.*/lib\/node_modules\/&\/README.md/' | tr '\n' ' ' )
85
+ files=$( echo "$CHANGED_PACKAGES" | sed 's/.*/lib\/node_modules\/&\/README.md/' | tr '\n' ' ' )
86
echo $files
87
make markdown-svg-equations-files FILES=$files
88
git config --local user.email "noreply@stdlib.io"
0 commit comments