Hook in new create_release_attachment to main

This commit is contained in:
2025-05-29 17:42:31 -05:00
parent 6d95e54bc7
commit 6b537c8992

View File

@@ -72,13 +72,13 @@ async fn main() -> Result<(), gt_tools::Error> {
} }
// TODO: Pre-create the release, if it doesn't exist. // TODO: Pre-create the release, if it doesn't exist.
// TODO: Find an existing release and use it's ID, if it does // TODO: Find an existing release and use it's ID, if it does
do_upload_release( gt_tools::api::release_attachment::create_release_attachment(
&client, &client,
&args.gitea_url, &args.gitea_url,
&args.repo, &args.repo,
52usize, 52usize,
files files
).await.map_err(reqwest_to_gttool)?; ).await?;
} }
} }