0
0
mirror of https://github.com/thegeeklab/wp-gitea-release.git synced 2024-11-24 13:00:40 +00:00

Merge pull request #28 from pheelee/master

use tag as title if not user provided fixes #26
This commit is contained in:
Don 2021-06-15 14:22:53 -07:00 committed by GitHub
commit 2087ad8457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,6 +137,12 @@ func (p Plugin) Exec() error {
Note: p.Config.Note,
}
// if the title was not provided via .drone.yml we use the tag instead
// fixes https://github.com/drone-plugins/drone-gitea-release/issues/26
if rc.Title == "" {
rc.Title = rc.Tag
}
release, err := rc.buildRelease()
if err != nil {