diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2fb6d92..605b052 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,6 +58,15 @@ jobs: run: | 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 id: version run: | diff --git a/Cargo.lock b/Cargo.lock index 531cbcd..edd8713 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1353,7 +1353,7 @@ dependencies = [ [[package]] name = "managarr" -version = "0.3.1" +version = "0.3.2" dependencies = [ "anyhow", "assert_cmd",