Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(crate): Prepping Talos Messenger for publishing to crates.io #96

Merged
merged 2 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Crates.io version](https://img.shields.io/crates/v/talos_certifier)](https://crates.io/crates/talos_certifier)
[![Build Status](https://img.shields.io/github/actions/workflow/status/kindredgroup/talos/master.yml)](https://github.com/kindredgroup/talos/actions/workflows/master.yml)
[![codecov](https://img.shields.io/codecov/c/github/kindredgroup/talos/master?style=flat-square&logo=codecov)](https://app.codecov.io/gh/kindredgroup/talos)

Expand Down
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