By rewriting my article I found out that removing the following comment, from:
- name: Copy over new files
run: |
# Whitelist of all publishable wiki articles
cp index.md $content
# more publishable markdown files...
to
- name: Copy over new files
run: |
# Whitelist of all publishable wiki articles
cp index.md $content
I could get it to work.
I suppose the dots (...
) at the end of the line where the issue.
Can anyone provide some more information regarding this?