diff --git a/.github/workflows/release-please-prepare-branch.yml b/.github/workflows/release-please-prepare-branch.yml index f6ad8e5..aa43190 100644 --- a/.github/workflows/release-please-prepare-branch.yml +++ b/.github/workflows/release-please-prepare-branch.yml @@ -64,6 +64,6 @@ jobs: git config --global user.email "zksync-era-bot@users.noreply.github.com" git config --global user.name "zksync-era-bot" git remote set-url origin 'https://${{ secrets.RELEASE_TOKEN }}@github.com/matter-labs/vm2.git' - git add ./Cargo.toml + git add ./Cargo.toml ./Cargo.lock git commit -m "$EXPECTED_COMMIT_MESSAGE" git push diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 493f725..17b2b0e 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -58,7 +58,8 @@ jobs: run: cargo install cargo-workspaces - name: Build each package separately - run: cargo ws exec cargo build + # Ignore the fuzzing crate which requires a wrapper to build + run: cargo ws exec --ignore-private cargo build - name: Login to crates.io run: cargo login ${{ secrets.CRATES_IO_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index 56b75e8..0408dc1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1446,7 +1446,7 @@ dependencies = [ [[package]] name = "zksync_vm2" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "arbitrary", @@ -1462,7 +1462,7 @@ dependencies = [ [[package]] name = "zksync_vm2_afl_fuzz" -version = "0.1.0" +version = "0.2.0" dependencies = [ "afl", "arbitrary", @@ -1474,7 +1474,7 @@ dependencies = [ [[package]] name = "zksync_vm2_interface" -version = "0.1.0" +version = "0.2.0" dependencies = [ "primitive-types", ]