Skip to content

Commit

Permalink
ci: fix i6-pack publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kruserr committed Oct 8, 2024
1 parent 7d75a6a commit 0555d81
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,5 @@ jobs:
uses: Swatinem/rust-cache@v2
- name: Publish
run: |
cargo publish -p i6-pack --token ${{ secrets.CARGO_TOKEN }}
cargo publish -p i6 --token ${{ secrets.CARGO_TOKEN }}
4 changes: 2 additions & 2 deletions i6-pack/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "i6-pack"
version = "0.1.10"
version = "0.1.10" # prepare_release.sh
edition = "2021"
publish = false
readme = "../README.md"

[lints]
workspace = true
Expand Down
1 change: 1 addition & 0 deletions tooling/prepare_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ bump_version () {
msg="# prepare_release.sh"

sed "s/^version = .* $msg$/version = \"${1#v}\" $msg/" -i i6/Cargo.toml
sed "s/^version = .* $msg$/version = \"${1#v}\" $msg/" -i i6-pack/Cargo.toml

cargo check
}
Expand Down

0 comments on commit 0555d81

Please sign in to comment.