Skip to content

Commit

Permalink
release-please-update-cargo-lock
Browse files Browse the repository at this point in the history
  • Loading branch information
perekopskiy committed May 7, 2024
1 parent fa86155 commit 2eaffa2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release-please-cargo-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on:
push:
branches:
- release-please--branches--main--components--core
- release-please-cargo-lock

name: release-please-update-cargo-lock
jobs:
update_cargo_lock:
runs-on: [matterlabs-ci-runner]

steps:
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
with:
submodules: "recursive"

- name: Setup environment
run: |
echo ZKSYNC_HOME=$(pwd) >> $GITHUB_ENV
echo $(pwd)/bin >> $GITHUB_PATH
echo IN_DOCKER=1 >> .env
- name: Cargo check
run: ci_run cargo check

- name: Push changes
run:
git add ./Cargo.lock
git commit -m "Update Cargo.lock"
git push

0 comments on commit 2eaffa2

Please sign in to comment.