Skip to content

Commit

Permalink
Move docs deploy to top-level prefix (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Aug 8, 2024
1 parent 21a49cb commit 4739024
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ jobs:

- name: Build python packages
run: |
poetry run maturin develop -m arro3-compute/Cargo.toml
# arro3-core needs to be first
poetry run maturin develop -m arro3-core/Cargo.toml
poetry run maturin develop -m arro3-compute/Cargo.toml
poetry run maturin develop -m arro3-io/Cargo.toml
- name: Install root project
Expand All @@ -69,5 +70,5 @@ jobs:
# Only push docs if no letters in git tag after the first character
# (usually the git tag will have v as the first character)
if echo $VERSION | cut -c 1- | grep -q "[A-Za-z]"; then
poetry run mike deploy $VERSION latest --update-aliases --push --deploy-prefix core/
poetry run mike deploy $VERSION latest --update-aliases --push
fi

0 comments on commit 4739024

Please sign in to comment.