forked from bevyengine/bevy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.sh
49 lines (47 loc) · 821 Bytes
/
publish.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# if crate A depends on crate B, B must come before A in this list
crates=(
bevy_utils
bevy_ptr
bevy_macro_utils
bevy_derive
bevy_math
bevy_tasks
bevy_reflect/bevy_reflect_derive
bevy_reflect
bevy_ecs/macros
bevy_ecs
bevy_app
bevy_log
bevy_dynamic_plugin
bevy_asset
bevy_audio
bevy_core
bevy_diagnostic
bevy_hierarchy
bevy_transform
bevy_window
bevy_encase_derive
bevy_render
bevy_core_pipeline
bevy_input
bevy_gilrs
bevy_animation
bevy_pbr
bevy_gltf
bevy_scene
bevy_sprite
bevy_text
bevy_ui
bevy_winit
bevy_internal
bevy_dylib
)
cd crates
for crate in "${crates[@]}"
do
echo "Publishing ${crate}"
(cd "$crate"; cargo publish --no-verify)
sleep 20
done
cd ..
cargo publish