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:
parent
6b8f9e21f1
commit
d0813991bd
1 changed files with 17 additions and 0 deletions
17
nu_release.nu
Normal file
17
nu_release.nu
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue