fix(cli): Actively wait for packages only after tag

Before we waited for native executables, bindings and so forth after
pushing a package. This patch moves this wait after tagging it - that
is, when a package version is actually available.
This commit is contained in:
Edoardo Marangoni
2024-05-22 17:08:18 +02:00
parent ead660f59a
commit e8c35d762d
5 changed files with 22 additions and 17 deletions

View File

@ -280,6 +280,7 @@ mod queries {
#[derive(cynic::QueryFragment, Debug)]
pub struct TagPackageReleasePayload {
pub success: bool,
pub package_version: Option<PackageVersion>,
}
#[derive(cynic::InputObject, Debug)]