We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 230fb39 commit 514f543Copy full SHA for 514f543
.github/workflows/release.yml
@@ -79,13 +79,13 @@ jobs:
79
working-directory: rust
80
run: cargo test
81
82
- - name: Commit rust/deps if changed
+ - name: Commit rust/deps and Cargo.lock if changed
83
run: |
84
git config user.name "github-actions[bot]"
85
git config user.email "github-actions[bot]@users.noreply.github.com"
86
- git add rust/deps/
+ git add rust/deps/ rust/Cargo.lock
87
if git diff --cached --quiet; then
88
- echo "rust/deps is up to date"
+ echo "rust/deps and Cargo.lock are up to date"
89
else
90
git commit -m "chore: update rust/deps vendored sources [skip ci]"
91
git push
0 commit comments