which is supposed to release my CV online. It works great, and since it runs on github actions Hooks are not possible.
Adding do './tex/gitinfo2.pm'; to my .latexmkrc only yields :
sh: git: not found
sh: git: not found
sh: git: not found
while running gitinfo2.pm. I suppose this is because standard git commands do not work in a github action context. Do you think there is still something we can do ?
Nevermind, I just installed perl and ran do './tex/gitinfo2.pmbefore running latexmk, writting things in gitHeadLocal.gin instead of .git/.... It worked like a charm.
I have troubles making this work on github actions ? I have a github action that looks like :
which is supposed to release my CV online. It works great, and since it runs on github actions Hooks are not possible.
Adding
do './tex/gitinfo2.pm';
to my.latexmkrc
only yields :while running
gitinfo2.pm
. I suppose this is because standard git commands do not work in a github action context. Do you think there is still something we can do ?