Open
Description
When using the docker action of pandoc the following error occurs:
- run: |
mkdir public
echo "FILELIST=$(printf '"%s" ' src/sections/*.md)" >> $GITHUB_ENV
- name: Build Report to HTML
uses: docker://pandoc/latex:2.11.4
with:
args: >-
pandoc
--filter pandoc-xnos
--metadata-file=src/metadata.yaml
--citeproc
--bibliography=src/bibliography.bib
--toc
--standalone
--output=public/index.html
${{ env.FILELIST }}
←[34m[Publish GitHub Pages/build-gh-pages ] ←[0m ❌ Failure - Build Report to HTML
Error: Error response from daemon: OCI runtime create failed: container_linux.go:370: starting container process caused: exec: "--filter": executable file not found in $PATH: unknown
The problem seems to be that the ENTRYPOINT
is not set anymore?
(note that pandoc-xnos is installed via PIP)