You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a cargoPublish configured in a monorepo with multiple Rust crates, where A depends on B. When running
the publish effect, I want B to be published first, otherwise publishing A would falis.
I know that cargo workspaces would be a solution, but in our architecture this is not an option.
Is there a way to sequence effects somehow?
The text was updated successfully, but these errors were encountered:
This feature has not been implemented yet. A workaround for your use case is to perform all publish actions in a single effect, which may also be slightly more efficient, by skipping setup like the src unpacking.
I have a
cargoPublish
configured in a monorepo with multiple Rust crates, where A depends on B. When runningthe publish effect, I want B to be published first, otherwise publishing A would falis.
I know that cargo workspaces would be a solution, but in our architecture this is not an option.
Is there a way to sequence effects somehow?
The text was updated successfully, but these errors were encountered: