Skip to content

Commit

Permalink
Refactor release script (#985)
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe authored Apr 5, 2024
1 parent 6243dfe commit bb50856
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/ci/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ git config user.name 'GitHub Action'
git add -f $bytecode_file
git commit -m "Update bytecode file"

for path in $(find . -name Cargo.lock); do
for directory in . cmd/mrun; do
(
cd $(dirname $path)
cd $directory
cargo workspaces publish -y --from-git
)
done
done

0 comments on commit bb50856

Please sign in to comment.