Просмотр исходного кода

models/release: Update Sha1 if tag already exists (#3331)

Since the release struct is initialized with the current `HEAD` of the
current `release.Target` the commit id has to be updated if the tag
commit already exists. Otherwise the linked commit on the release page
will target the current `HEAD` at release time.
마누엘 лет назад: 7
Родитель
Сommit
36a63dd059
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      models/release.go

+ 1 - 0
models/release.go

@@ -81,6 +81,7 @@ func createTag(gitRepo *git.Repository, rel *Release) error {
 				return fmt.Errorf("GetTagCommit: %v", err)
 			}
 
+			rel.Sha1 = commit.ID.String()
 			rel.NumCommits, err = commit.CommitsCount()
 			if err != nil {
 				return fmt.Errorf("CommitsCount: %v", err)