From 1cddac2999751f3c5ca5f2c8d11ccf9e94b6bd08 Mon Sep 17 00:00:00 2001 From: softprops Date: Sun, 25 Aug 2019 22:01:15 -0400 Subject: [PATCH] fix assets url --- src/github.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.rs b/src/github.rs index 1532f10..10764e5 100644 --- a/src/github.rs +++ b/src/github.rs @@ -90,7 +90,7 @@ impl> AssetUploader for Client { ) -> Result> { Ok(self .post(&format!( - "http://uploads.github.com/repos/{}/releases/{}", + "http://uploads.github.com/repos/{}/releases/{}/assets", github_repo, release_id )) .header("Authorization", format!("bearer {}", github_token))