Skip to content

Commit

Permalink
Fix dependency publish order
Browse files Browse the repository at this point in the history
I got the dependency deploy order incorrect initially because I did not realize
  that `cargo tree` does not, by default, show all the times a create shows up as a dependency
  • Loading branch information
Swandog committed Apr 21, 2023
1 parent 697b46e commit 372805c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rust-build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,16 +209,18 @@ jobs:
- name: Publish to Crates.io
working-directory: lace
run: |
cargo publish --token "${CRATES_TOKEN}" -p lace_utils
cargo publish --token "${CRATES_TOKEN}" -p lace_consts
cargo publish --token "${CRATES_TOKEN}" -p lace_data
cargo publish --token "${CRATES_TOKEN}" -p lace_utils
cargo publish --token "${CRATES_TOKEN}" -p lace_stats
cargo publish --token "${CRATES_TOKEN}" -p lace_cc
cargo publish --token "${CRATES_TOKEN}" -p lace_codebook
cargo publish --token "${CRATES_TOKEN}" -p lace_geweke
cargo publish --token "${CRATES_TOKEN}" -p lace_cc
cargo publish --token "${CRATES_TOKEN}" -p lace_metadata
cargo publish --token "${CRATES_TOKEN}" -p lace
Expand Down

0 comments on commit 372805c

Please sign in to comment.