We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thank you a lot for such a wonderful action!
In my initial version of workflow, I wrote the followings:
- name: Clone Kerbal uses: actions/checkout@v4 with: repository: WentsingNee/Kerbal path: Kerbal submodules: 'true' - name: Run Doxygen uses: mattnotmitt/[email protected] with: working-directory: '${{github.workspace}}/Kerbal/doxygen' doxyfile-path: 'Doxyfile'
but the log said that the directory cannot be found:
Job Clone Kerbal: ... /usr/bin/git config --global --add safe.directory /home/runner/work/Kerbal/Kerbal/Kerbal ... Job Run Doxygen: ... + '[' '!' -d /home/runner/work/Kerbal/Kerbal/Kerbal/doxygen ] + echo 'Path /home/runner/work/Kerbal/Kerbal/Kerbal/doxygen could not be found!' Path /home/runner/work/Kerbal/Kerbal/Kerbal/doxygen could not be found! + exit 1
I have to change the line
working-directory: '${{github.workspace}}/Kerbal/doxygen'
to
working-directory: 'Kerbal/doxygen'
and finally solve that problem
I suggest that you can mention this issue in readme to help the latecomers and save their time
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you a lot for such a wonderful action!
In my initial version of workflow, I wrote the followings:
but the log said that the directory cannot be found:
I have to change the line
to
and finally solve that problem
I suggest that you can mention this issue in readme to help the latecomers and save their time
The text was updated successfully, but these errors were encountered: