https://github.com/leg100/otf/blob/master/internal/github/client.go#L245-L259
If we use an annotated tag (https://git-scm.com/book/en/v2/Git-Basics-Tagging), as is best practice (for signing, etc.), OTF cannot fetch it because it tries to treat it directly like a commit sha
The only type of tag usable in OTF's Github backend is a lightweight tag
You probably need to peel the tag: https://stackoverflow.com/questions/26492303/what-does-peel-mean-in-git
https://github.com/leg100/otf/blob/master/internal/github/client.go#L245-L259
If we use an annotated tag (https://git-scm.com/book/en/v2/Git-Basics-Tagging), as is best practice (for signing, etc.), OTF cannot fetch it because it tries to treat it directly like a commit sha
The only type of tag usable in OTF's Github backend is a lightweight tag
You probably need to peel the tag: https://stackoverflow.com/questions/26492303/what-does-peel-mean-in-git