Skip to content

Commit c4b22ba

Browse files
authored
ci: Brush up repo for publishing – post-release fixes (#70)
# What ❔ Fixes the release workflow. ## Why ❔ The release workflow is currently broken.
1 parent 9b36813 commit c4b22ba

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/release-please-prepare-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ jobs:
6464
git config --global user.email "zksync-era-bot@users.noreply.github.com"
6565
git config --global user.name "zksync-era-bot"
6666
git remote set-url origin 'https://${{ secrets.RELEASE_TOKEN }}@github.com/matter-labs/vm2.git'
67-
git add ./Cargo.toml
67+
git add ./Cargo.toml ./Cargo.lock
6868
git commit -m "$EXPECTED_COMMIT_MESSAGE"
6969
git push

.github/workflows/release-please.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
run: cargo install cargo-workspaces
5959

6060
- name: Build each package separately
61-
run: cargo ws exec cargo build
61+
# Ignore the fuzzing crate which requires a wrapper to build
62+
run: cargo ws exec --ignore-private cargo build
6263

6364
- name: Login to crates.io
6465
run: cargo login ${{ secrets.CRATES_IO_TOKEN }}

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)