Skip to content

Commit

Permalink
ci: fix package name
Browse files Browse the repository at this point in the history
  • Loading branch information
Mcdostone committed Dec 10, 2024
1 parent 8ceb437 commit 27c92af
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,12 +273,12 @@ jobs:
cargo publish --dry-run -p yozefu-app
cargo publish --dry-run -p yozefu-tui
cargo publish --dry-run -p yozefu-command
cargo publish --dry-run -p yozefu-bin
cargo publish --dry-run -p yozefu
- name: Publish the crates
run: |
cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p yozefu-lib
cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p yozefu-wasm-types
cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p yozefu-app
cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p yozefu-tui
cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p yozefu-command
cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p yozefu-bin
cargo publish --token ${{ secrets.CARGO_REGISTRY_TOKEN }} -p yozefu
2 changes: 1 addition & 1 deletion crates/command/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "yozefu-command"
description = "Clap commands of yozefu"
keywords = ["argument", "cli", "arg", "parser", "parse"]
keywords = ["argument", "cli", "tui", "parser", "parse"]
readme = "README.md"
categories = [
"command-line-utilities",
Expand Down
2 changes: 1 addition & 1 deletion crates/tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "yozefu-tui"
description = "A TUI for browsing kafka topics"
keywords = ["kafka", "consumer", "replace", "regex"]
keywords = ["kafka", "consumer", "tui", "terminal"]
readme = "README.md"
categories = [
"command-line-utilities",
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "yozefu-wasm-types"
readme = "README.md"
description = "Types and structures for defining WebAssembly modules"
keywords = ["wasm", "kafka", "record"]
keywords = ["wasm", "kafka"]
categories = []
version.workspace = true
authors.workspace = true
Expand Down

0 comments on commit 27c92af

Please sign in to comment.