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

Fix extraction of tag from commit ref to handle `/` char
master
Thomas Boerger 7 years ago committed by GitHub
commit 1d7c72a644
  1. 2
      plugin.go

@ -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,

Loading…
Cancel
Save