1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

Add files via upload

The release script that will publish all the required parts of Nushell to crates.io
This commit is contained in:
Jonathan Turner 2021-03-10 08:42:16 +13:00 committed by GitHub
parent 6b8f9e21f1
commit d0813991bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
nu_release.nu Normal file
View file

@ -0,0 +1,17 @@
cd crates
let first-wave = [nu-ansi-term, nu-source, nu-errors, nu-protocol, nu-value-ext, nu-test-support, nu-table, nu-parser, nu-plugin, nu-data, nu-stream, nu-engine, nu-json]
echo $first-wave | each { enter $it; cargo publish; exit; sleep 1min }
let second-wave = [nu-command, nu-cli]
echo $second-wave | each { enter $it; cargo publish --no-verify; exit; sleep 1min }
ls nu_plugin_* | each { enter $it.name; cargo publish; exit }
sleep 1min
cd ..
cargo publish