fix(ci): Bump the version in the Cargo.lock file and commit it as well when releasing [skip ci]

This commit is contained in:
2024-11-25 19:39:36 -07:00
parent 533366b90b
commit 1746869b45
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -58,6 +58,15 @@ jobs:
run: | run: |
git commit --amend --no-edit -m "$(git log -1 --pretty=%B) [skip ci]" git commit --amend --no-edit -m "$(git log -1 --pretty=%B) [skip ci]"
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Update the Cargo.lock
run: |
cargo update
git add Cargo.lock
git commit -m "chore: Bump the version in Cargo.lock"
- name: Get the new version tag - name: Get the new version tag
id: version id: version
run: | run: |
Generated
+1 -1
View File
@@ -1353,7 +1353,7 @@ dependencies = [
[[package]] [[package]]
name = "managarr" name = "managarr"
version = "0.3.1" version = "0.3.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_cmd", "assert_cmd",