Skip to content

Commit e335b19

Browse files
bors[bot]bidoubiwa
andauthored
Merge #408
408: Update CI with the publishing of local `meilisearch-index-setting-macro` crate r=bidoubiwa a=bidoubiwa This repository is using a local crate named `meilisearch-index-setting-macro`. It is required to be published to crates.io in order to be able to release the `meilisearch` crate Co-authored-by: Charlotte Vermandel <[email protected]>
2 parents 4cb7983 + 3cc3e04 commit e335b19

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,17 @@ jobs:
1515
rust-version: stable
1616
- name: Check release validity
1717
run: sh .github/scripts/check-release.sh
18-
- name: Build
18+
- name: Build meilisearch crate
1919
run: cargo build --release
20+
- name: Build meilisearch crate
21+
run: |-
22+
cd meilisearch-index-setting-macro
23+
cargo build --release
2024
- name: Login
2125
run: cargo login ${{ secrets.CRATES_TOKEN }}
22-
- name: Publish to crates.io
26+
- name: Publish meilisearch crate to crates.io
2327
run: cargo publish
28+
- name: Publish meilisearch-index-setting-macro crate to crates.io
29+
run: |-
30+
cd meilisearch-index-setting-macro
31+
cargo publish

0 commit comments

Comments
 (0)