Skip to content

Commit

Permalink
fix(ci): Fixing broken release please script after cargo files change…
Browse files Browse the repository at this point in the history
…d location (#3494)

## What ❔

Fixing broken release please script after cargo files changed location
  • Loading branch information
tomg10 authored Jan 17, 2025
1 parent cb5c9b7 commit e30488e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-please-cargo-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Cargo check
if: steps.condition.outputs.skip_steps != 'true'
run: ci_run cargo check
run: ci_run cargo check --manifest-path core/Cargo.toml

- name: Push changes
if: steps.condition.outputs.skip_steps != 'true'
Expand All @@ -50,6 +50,6 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "zksync-era-bot"
git remote set-url origin 'https://${{ secrets.RELEASE_TOKEN }}@github.com/matter-labs/zksync-era.git'
git add ./Cargo.lock
git add core/Cargo.lock
git commit -m "Update Cargo.lock"
git push

0 comments on commit e30488e

Please sign in to comment.