Merge pull request #26 from awilliams/fix-tag-extraction

Fix extraction of tag from commit ref to handle `/` char
This commit is contained in:
Thomas Boerger
2017-08-15 10:15:25 +02:00
committed by GitHub
+1 -1
View File
@@ -116,7 +116,7 @@ func (p Plugin) Exec() error {
Client: client,
Owner: p.Repo.Owner,
Repo: p.Repo.Name,
Tag: filepath.Base(p.Commit.Ref),
Tag: strings.TrimPrefix(p.Commit.Ref, "refs/tags/"),
Draft: p.Config.Draft,
Prerelease: p.Config.Prerelease,
FileExists: p.Config.FileExists,