Skip to content

Commit

Permalink
added rye to path
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebv committed Mar 11, 2024
1 parent 758503c commit 026cf80
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ jobs:
- name: Install rye
run: curl -sSf https://rye-up.com/get | RYE_INSTALL_OPTION="--yes" bash
- name: Install project and its dependencies
run: rye sync
run: |
export PATH="~/.rye/shims:$PATH"
rye sync --no-lock
- name: Build and deploy docs
run: rye run mkdocs gh-deploy --force
run: |
export PATH="~/.rye/shims:$PATH"
rye run mkdocs gh-deploy --force

0 comments on commit 026cf80

Please sign in to comment.