Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down