fix(ci): needed to include examples as well
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
2072ffe507
commit
bcdb8ca741
@ -261,6 +261,13 @@ pub async fn get_rust_skeleton_files(
|
||||
}
|
||||
}
|
||||
|
||||
let mut dirs = tokio::fs::read_dir("examples").await?;
|
||||
while let Some(entry) = dirs.next_entry().await? {
|
||||
if entry.metadata().await?.is_dir() {
|
||||
rust_crates.push(entry.path())
|
||||
}
|
||||
}
|
||||
|
||||
fn create_skeleton_files(
|
||||
directory: dagger_sdk::Directory,
|
||||
path: &Path,
|
||||
|
Loading…
Reference in New Issue
Block a user