Skip to content

Commit

Permalink
Fix bump script
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Jan 5, 2023
1 parent b437305 commit d75be59
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
6 changes: 5 additions & 1 deletion scripts/cargo/bump.sh
Expand Up @@ -7,11 +7,15 @@ yarn changelog
cargo mono bump -i
# Ensure that Cargo.lock is up-to-date
cargo metadata --format-version 1 > /dev/null
(cd ./bindings && cargo metadata --format-version 1 > /dev/null)

# Ensure that dependencies are all verified
./scripts/crev/verify.sh

git add -A
git commit -m 'chore: Publish crates'
git push --no-verify
cargo mono publish --no-verify

# Publish
cargo mono publish --no-verify
(cd ./bindings && cargo mono publish --no-verify)
17 changes: 0 additions & 17 deletions scripts/cargo/cli.sh

This file was deleted.

0 comments on commit d75be59

Please sign in to comment.