Skip to content

Commit af644d9

Browse files
bors[bot]bidoubiwa
andauthored
Merge #410
410: Fix order of crate publishing r=bidoubiwa a=bidoubiwa The macro crate should be published before the meilisearch-rust crate since `meilisearch-rust` needs the macro crate to work Co-authored-by: Charlotte Vermandel <[email protected]>
2 parents dfd75eb + aeac973 commit af644d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
cargo build --release
2424
- name: Login
2525
run: cargo login ${{ secrets.CRATES_TOKEN }}
26-
- name: Publish meilisearch crate to crates.io
27-
run: cargo publish
2826
- name: Publish meilisearch-index-setting-macro crate to crates.io
2927
run: |-
3028
cd meilisearch-index-setting-macro
3129
cargo publish
30+
- name: Publish meilisearch crate to crates.io
31+
run: cargo publish

0 commit comments

Comments
 (0)