meilisearch / meilisearch-rust

Rust wrapper for the Meilisearch API.

Home Page:https://www.meilisearch.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add the crate publish of `meilisearch-index-setting-macro` in the CI

bidoubiwa opened this issue · comments

We added meilisearch-index-setting-macro as a local crate in our project #358. Unfortunately, in order to publish this projects crate we also need to publish the local create.

This requires to update the publishing CI:

- name: Build
run: cargo build --release
- name: Login
run: cargo login ${{ secrets.CRATES_TOKEN }}
- name: Publish to crates.io
run: cargo publish

To also include the publishing of local meilisearch-index-setting-macro crate.

fixed by #411