mirror of
https://github.com/RGBCube/nu_scripts
synced 2025-08-01 22:57:46 +00:00
Update release script to nu_plugin_formats
(#384)
Also no need to sleep
This commit is contained in:
parent
fa5f262a5c
commit
691b666dc5
1 changed files with 9 additions and 4 deletions
|
@ -29,27 +29,32 @@ let subcrates_wave_3 = [
|
|||
# plugins
|
||||
nu_plugin_query,
|
||||
nu_plugin_inc,
|
||||
nu_plugin_gstat
|
||||
nu_plugin_gstat,
|
||||
nu_plugin_formats,
|
||||
]
|
||||
|
||||
# Recent versions of cargo verify the upload of your crate
|
||||
# So no need to `sleep` anymore.
|
||||
|
||||
for subcrate in $subcrates_wave_1 {
|
||||
cd $subcrate
|
||||
cargo publish
|
||||
sleep 1min
|
||||
# sleep 1min
|
||||
cd ..
|
||||
}
|
||||
|
||||
for subcrate in $subcrates_wave_2 {
|
||||
cd $subcrate
|
||||
# due to build.rs in `nu-command`
|
||||
cargo publish --no-verify
|
||||
sleep 1min
|
||||
# sleep 1min
|
||||
cd ..
|
||||
}
|
||||
|
||||
for subcrate in $subcrates_wave_3 {
|
||||
cd $subcrate
|
||||
cargo publish
|
||||
sleep 1min
|
||||
# sleep 1min
|
||||
cd ..
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue