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
I tried to use
- uses: actions/checkout@v2 with: submodules: 'recursive'
or
- uses: actions/checkout@v2 with: submodules: 'recursive' fetch-depth: '0'
But during the latter build process, it always failed with something error message like
Error: Command failed: git describe --tags fatal: No names found, cannot describe anything.
see https://github.com/liudonghua123/dpo-voyager/runs/662309034?check_suite_focus=true.
And in the end I need to rewrite the checkout steps like the following to make the build process success.
- uses: actions/checkout@v2 with: submodules: 'recursive' - run: git fetch --prune --unshallow
ref: https://stackoverflow.com/questions/4916492/git-describe-fails-with-fatal-no-names-found-cannot-describe-anything
Is there any options to make git work as --prune --unshallow?
--prune --unshallow
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I tried to use
or
But during the latter build process, it always failed with something error message like
see https://github.com/liudonghua123/dpo-voyager/runs/662309034?check_suite_focus=true.
And in the end I need to rewrite the checkout steps like the following to make the build process success.
ref: https://stackoverflow.com/questions/4916492/git-describe-fails-with-fatal-no-names-found-cannot-describe-anything
Is there any options to make git work as
--prune --unshallow
?The text was updated successfully, but these errors were encountered: