Skip to content

Commit

Permalink
chore(crate): Prepping Talos Messenger for publishing to crates.io (#96)
Browse files Browse the repository at this point in the history
* chore(crate): Prepping Talos Messenger for publishing to crates.io

* chore(badge): crates.io package version number
  • Loading branch information
gk-kindred authored Dec 3, 2023
1 parent ab9dfbc commit c199964
Show file tree
Hide file tree
Showing 6 changed files with 36 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
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

0 comments on commit c199964

Please sign in to comment.