Hi, it seems this example action in the description here doesn't work.
with:
source_file: euler-lagrange-jp.typ
- name: Typst
uses: lvignoli/typst-action@main
with:
source_file: main.typ
options: |
--font-path
fonts
In my pipeline, the actual command executed seems like this (omitting irrelevant parameters to docker)
7 docker <blah..blah...> "euler-lagrange-jp.typ" "--font-path
8 fonts
9 "
which suggests that it's supposed to be like below, but the newline separated parameters actually go to the next command.
7 docker <blah..blah...> "euler-lagrange-jp.typ" "--font-path" "fonts"
Hi, it seems this example action in the description here doesn't work.
In my pipeline, the actual command executed seems like this (omitting irrelevant parameters to docker)
which suggests that it's supposed to be like below, but the newline separated parameters actually go to the next command.