From 98e6763d6429c061f4c0a7697b9db295f443fe7e Mon Sep 17 00:00:00 2001 From: Yagiz Nizipli Date: Wed, 11 Mar 2026 12:50:39 -0400 Subject: [PATCH] fix: add changed cargo.lock on publish --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c17ae09..f9b84a4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -79,13 +79,13 @@ jobs: working-directory: rust run: cargo test - - name: Commit rust/deps if changed + - name: Commit rust/deps and Cargo.lock if changed run: | git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - git add rust/deps/ + git add rust/deps/ rust/Cargo.lock if git diff --cached --quiet; then - echo "rust/deps is up to date" + echo "rust/deps and Cargo.lock are up to date" else git commit -m "chore: update rust/deps vendored sources [skip ci]" git push