-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation: Full Paths #26
Comments
I have a question about paths as well, I cannot seem to get the action to succeed, it either cant find the output folder or the Doxyfile that I have. From you comment above I am wondering if I need to edit my Doxyfile to use this action of if it is a matter of my yaml config. I am trying to build docs with this action then deploy to github pages. Here is my full yaml
In my repository (https://github.com/movetones/Gravitone_ArduinoLibrary) I have a Doxyfile in thr root directory and I want to put the output of Doxygen in to the Any responses are appreciated. |
@JackAtGaia thanks for bringing this to my attention! I'll update the docs to try and help & sorry for taking so long to reply. @ruffner you need to set your |
@mattnotmitt thanks for your reply, but I tried that and the problem seems to be with your script not finding my Doxyfile to begin with when github actions runs it in a docker container: |
@ruffner looks like you've figured it out, but you were missing the checkout action while you were using my action. |
Greetings, like the action. Worked pretty flawlessly once I figured it out.
I am not sure if I am unique, but I like to specify things by full paths to be sure I have things specified correctly.
so, in my workflow, I created a directory to hold the output, and then did some search & replace on the doxyfile to match.
After getting some errors, it took me a bit to figure out that I needed to replace
${{ github.workspace }}
with/github/workspace
as it was being mounted inside a docker container.That might be something you want to point out for people using full paths.
The text was updated successfully, but these errors were encountered: