mirror of
https://github.com/drone-plugins/drone-gitea-release.git
synced 2026-06-14 14:02:59 +08:00
Merge pull request #26 from awilliams/fix-tag-extraction
Fix extraction of tag from commit ref to handle `/` char
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user