Skip to content

Commit

Permalink
publish script fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-marinica committed Jul 6, 2024
1 parent b887cf1 commit c4608cc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#
# 6. Make sure that the contract upgrade tool is still sound.
# At the very least add the new version to `VERSIONS` and change `DEFAULT_LAST_VERSION` in
# `/home/andreim/multiversx/rs/mx-sdk-rs/framework/meta/src/sc_upgrade/upgrade_versions.rs`
# `/home/andreim/multiversx/rs/mx-sdk-rs/framework/meta/src/sc_upgrade/upgrade_versions.rs`+
#
# 7. Run this script, `./publish.sh`.
# You can comment out the crates you are not publishing. The script will stop otherwise when it cannot publish them.
Expand Down Expand Up @@ -87,7 +87,7 @@ cd framework/base
cargo publish || return 1
cd ../..

cd framework/meta
cd framework/meta-lib
cargo publish || return 1
cd ../..

Expand All @@ -99,6 +99,10 @@ cd framework/snippets
cargo publish || return 1
cd ../..

cd framework/meta
cargo publish || return 1
cd ../..

cd framework/wasm-adapter
cargo publish || return 1
cd ../..
Expand Down

0 comments on commit c4608cc

Please sign in to comment.