Skip to content

Commit

Permalink
chore(crate): Prepping Talos Messenger for publishing to crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
gk-kindred committed Nov 29, 2023
1 parent ab9dfbc commit bd493c7
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,18 @@ jobs:
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN_TALOS }}
run: |-
cargo publish -v -p talos_certifier_adapters
cargo publish -v -p talos_certifier_adapters
# Talos messenger core
- name: Publish talos_messenger_core@ ${{ env.VERSION_NAME }} crate
shell: bash
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN_TALOS }}
run: |-
cargo publish -v -p talos_messenger_core
# Talos messenger actions
- name: Publish talos_messenger_actions@ ${{ env.VERSION_NAME }} crate
shell: bash
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN_TALOS }}
run: |-
cargo publish -v -p talos_messenger_actions
4 changes: 4 additions & 0 deletions packages/talos_messenger_actions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
name = "talos_messenger_actions"
version = "0.2.7-dev"
edition = "2021"
license = "MIT"
homepage = "https://github.com/kindredgroup/talos"
repository = "https://github.com/kindredgroup/talos"
readme = "README.md"

[lib]
doctest = false
Expand Down
7 changes: 7 additions & 0 deletions packages/talos_messenger_actions/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Talos Messenger Actions

Wrapper on Talos Messenger Core to handle specific types of `on_commit` actions.

Currently supports publishing to `kafka`.

Read more on the home page: https://github.com/kindredgroup/talos
4 changes: 4 additions & 0 deletions packages/talos_messenger_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
name = "talos_messenger_core"
version = "0.2.7-dev"
edition = "2021"
license = "MIT"
homepage = "https://github.com/kindredgroup/talos"
repository = "https://github.com/kindredgroup/talos"
readme = "README.md"

[lib]
doctest = false
Expand Down
5 changes: 5 additions & 0 deletions packages/talos_messenger_core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Talos Messenger Core

Core functionality for Talos messenger.

Read more on the home page: https://github.com/kindredgroup/talos

0 comments on commit bd493c7

Please sign in to comment.