Closed chrisaycock closed 3 years ago
This is an issue when releasing binaries. See:
https://github.com/marketplace/actions/checkout#Fetch-all-history-for-all-tags-and-branches
Failing that, try:
https://github.com/actions/checkout/issues/206#issuecomment-617937725
Culprit: the GA checkout script fetches a non-annotated tag. Since git describe uses only annotated tags by default, we had to list --tags.
git describe
--tags
This is an issue when releasing binaries. See:
https://github.com/marketplace/actions/checkout#Fetch-all-history-for-all-tags-and-branches
Failing that, try:
https://github.com/actions/checkout/issues/206#issuecomment-617937725