Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
964ea60e55 | |||
2386e278c7 | |||
66de41874d | |||
9aace7aa2b | |||
6c787535a8 | |||
e65c52c67c | |||
d19022dad8 | |||
2daf8b0d53 | |||
d9f25a2613 | |||
b2c43a5f3d |
24
CHANGELOG.md
24
CHANGELOG.md
@ -1,3 +1,27 @@
|
|||||||
|
## 0.13.0 (2024-10-25)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- :sparkles: use time.Time.Before() instead of Sub()
|
||||||
|
|
||||||
|
## 0.12.0 (2024-10-25)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- :sparkles: use tagger.when to find latest tag
|
||||||
|
|
||||||
|
## 0.11.1 (2024-07-11)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- :bug: append newline after success message, use logger [CI SKIP]
|
||||||
|
|
||||||
|
## 0.11.0 (2024-07-11)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- :sparkles: use log.textformatter
|
||||||
|
|
||||||
## 0.10.1 (2024-07-11)
|
## 0.10.1 (2024-07-11)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
2
cz.yaml
2
cz.yaml
@ -5,5 +5,5 @@ commitizen:
|
|||||||
name: cz_conventional_commits
|
name: cz_conventional_commits
|
||||||
tag_format: $version
|
tag_format: $version
|
||||||
update_changelog_on_bump: true
|
update_changelog_on_bump: true
|
||||||
version: 0.10.1
|
version: 0.13.0
|
||||||
version_scheme: semver
|
version_scheme: semver
|
||||||
|
19
main.go
19
main.go
@ -55,14 +55,14 @@ func init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
log.SetFormatter(new(formatter))
|
log.SetFormatter(&log.TextFormatter{
|
||||||
|
DisableTimestamp: true,
|
||||||
|
})
|
||||||
|
|
||||||
switch args.Level {
|
switch args.Level {
|
||||||
case "debug":
|
case "debug":
|
||||||
log.SetFormatter(textFormatter)
|
|
||||||
log.SetLevel(log.DebugLevel)
|
log.SetLevel(log.DebugLevel)
|
||||||
case "trace":
|
case "trace":
|
||||||
log.SetFormatter(textFormatter)
|
|
||||||
log.SetLevel(log.TraceLevel)
|
log.SetLevel(log.TraceLevel)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -70,16 +70,3 @@ func main() {
|
|||||||
log.Fatalln(err)
|
log.Fatalln(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// default formatter that writes logs without including timestamp
|
|
||||||
// or level information.
|
|
||||||
type formatter struct{}
|
|
||||||
|
|
||||||
func (*formatter) Format(entry *log.Entry) ([]byte, error) {
|
|
||||||
return []byte(entry.Message), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// text formatter that writes logs with level information
|
|
||||||
var textFormatter = &log.TextFormatter{
|
|
||||||
DisableTimestamp: true,
|
|
||||||
}
|
|
||||||
|
@ -172,7 +172,7 @@ func Exec(ctx context.Context, args Args) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
releaseURL := fmt.Sprintf("%s/%s/%s/releases/tag/%s", args.GiteaUrl, args.Owner, args.Repo, release.TagName)
|
releaseURL := fmt.Sprintf("%s/%s/%s/releases/tag/%s", args.GiteaUrl, args.Owner, args.Repo, release.TagName)
|
||||||
fmt.Printf("Successfully created release at %s", releaseURL)
|
log.WithField("url", releaseURL).Info("Successfully created release")
|
||||||
|
|
||||||
writeCard(
|
writeCard(
|
||||||
args.Pipeline.Card.Path,
|
args.Pipeline.Card.Path,
|
||||||
|
@ -11,7 +11,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"time"
|
||||||
|
|
||||||
"github.com/go-git/go-git/v5"
|
"github.com/go-git/go-git/v5"
|
||||||
"github.com/go-git/go-git/v5/plumbing/transport/client"
|
"github.com/go-git/go-git/v5/plumbing/transport/client"
|
||||||
@ -50,7 +50,7 @@ func SetBasicAuth(username, password string) func(repo *git.Repository) error {
|
|||||||
|
|
||||||
func FetchTags() func(repo *git.Repository) error {
|
func FetchTags() func(repo *git.Repository) error {
|
||||||
return func(repo *git.Repository) error {
|
return func(repo *git.Repository) error {
|
||||||
log.Info("Fetching latest git tags")
|
log.Info("Fetching git tags")
|
||||||
|
|
||||||
err := repo.Fetch(&git.FetchOptions{Tags: git.AllTags})
|
err := repo.Fetch(&git.FetchOptions{Tags: git.AllTags})
|
||||||
|
|
||||||
@ -62,28 +62,34 @@ func FetchTags() func(repo *git.Repository) error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func getLatestGitTag(options ...GetLatestGitTagOption) (tag string, err error) {
|
func getLatestGitTag(options ...GetLatestGitTagOption) (string, error) {
|
||||||
r, err := git.PlainOpen(".")
|
var (
|
||||||
|
tag string
|
||||||
|
tagDate *time.Time
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
|
||||||
|
repo, err := git.PlainOpen(".")
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("error opening git repo at %s: %w", ".", err)
|
return "", fmt.Errorf("error opening git repo at %s: %w", ".", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, opt := range options {
|
for _, opt := range options {
|
||||||
err := opt(r)
|
err := opt(repo)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tagRefs, err := r.Tags()
|
tags, err := repo.TagObjects()
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", fmt.Errorf("error getting git tag refs %w", err)
|
return "", fmt.Errorf("error getting git tags %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
for {
|
for {
|
||||||
r, err := tagRefs.Next()
|
t, err := tags.Next()
|
||||||
|
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
break
|
break
|
||||||
@ -93,15 +99,19 @@ func getLatestGitTag(options ...GetLatestGitTagOption) (tag string, err error) {
|
|||||||
return "", fmt.Errorf("error iterating tags %w", err)
|
return "", fmt.Errorf("error iterating tags %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
parts := strings.Split(string(r.Name()), "/")
|
if tagDate != nil && t.Tagger.When.Before(*tagDate) {
|
||||||
tag = strings.Join(parts[2:], "/")
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
tagDate = &t.Tagger.When
|
||||||
|
tag = t.Name
|
||||||
}
|
}
|
||||||
|
|
||||||
if tag == "" {
|
if tag == "" {
|
||||||
return tag, fmt.Errorf("couldn't find any git tags")
|
return tag, fmt.Errorf("couldn't find any git tags")
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return tag, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func writeCard(path, schema string, card interface{}) {
|
func writeCard(path, schema string, card interface{}) {
|
||||||
|
Loading…
Reference in New Issue
Block a user