Skip to content

Commit

Permalink
chore: Fix linter warning πŸ› πŸ’š
Browse files Browse the repository at this point in the history
  • Loading branch information
guisea committed Oct 1, 2024
1 parent 01d9ed1 commit fb7a9b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/provider/gitea.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func (repo *GiteaRepository) CreateRelease(release *provider.CreateReleaseConfig
}

_, _, err := repo.client.CreateRelease(repo.owner, repo.repo, opt)
return fmt.Errorf("error returned %s, tag value [%s]", err, tag)
return fmt.Errorf("error returned %w, tag value [%s]", err, tag)
}

func (repo *GiteaRepository) Name() string {
Expand Down

0 comments on commit fb7a9b7

Please sign in to comment.