diff --git a/github.go b/github.go index 536bf54..0669639 100644 --- a/github.go +++ b/github.go @@ -127,6 +127,7 @@ func FetchTags(githubRepoUrl string, githubToken string, instance GitHubInstance } for _, tag := range tags { + // Skip tags that are not semantically versioned so that they don't cause errors. (issue #75) if _, err := version.NewVersion(tag.Name); err == nil { tagsString = append(tagsString, tag.Name) }