1
Fork 0
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:
Stefan Holderbach 2023-02-21 23:06:49 +01:00 committed by GitHub
parent fa5f262a5c
commit 691b666dc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ..
}