pare-down-functionality #7

Merged
cadey merged 8 commits from pare-down-functionality into main 2020-07-08 23:19:39 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 8ef626cbd2 - Show all commits

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,