Skip to content

Commit 76c2e5d

Browse files
committed
fix: github actions
1 parent e727af5 commit 76c2e5d

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/publish-crate.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,13 @@ jobs:
3636
git config --global user.name "github-actions[bot]"
3737
git config --global user.email "actions[bot]@github.com"
3838
39+
- name: Install cargo-edit
40+
run: cargo install cargo-edit
41+
3942
- name: Bump version
4043
run: |
4144
cd src/rust
42-
cargo workspaces version ${{ github.event.inputs.version_bump }} --no-git-commit --yes
43-
44-
- name: Commit version bump
45-
run: |
46-
git add .
47-
git commit -m "chore: bump crate version (${{ github.event.inputs.version_bump }})"
48-
git push
45+
cargo workspaces version ${{ github.event.inputs.version_bump }} --yes
4946
5047
- name: Configure cargo for publishing
5148
run: |

src/rust/fcb_cpp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fcb_cpp"
3-
version = "0.3.0"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["Hidemichi Baba <baba.papa1120.ba@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)