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
commit 1d7c72a644
1 changed files with 1 additions and 1 deletions

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,