fix
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Cadey Ratio 2020-07-08 18:32:59 -04:00
parent f186ff7ae5
commit 8ef626cbd2
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ pub(crate) async fn run(env: DroneEnv) -> Result<()> {
match &env.default_branch {
None => {
let cli =
gitea::Client::new(common.server, common.token, crate::APP_USER_AGENT.into())?;
gitea::Client::new(common.server, common.token, crate::APP_USER_AGENT)?;
let repo = cli.get_repo(common.owner, common.repo).await?;
repo.default_branch
}

View File

@ -23,7 +23,7 @@ pub(crate) async fn run(
let desc = changelog::read(fname, tag.clone())?;
let cli = gitea::Client::new(common.server, common.token, crate::APP_USER_AGENT.into())?;
let cli = gitea::Client::new(common.server, common.token, crate::APP_USER_AGENT)?;
let cr = gitea::CreateRelease {
body: desc,