Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC Add versions and use pydata theme #173

Merged
merged 18 commits into from
Jun 2, 2022
Merged
13 changes: 12 additions & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,22 @@ jobs:
working-directory: doc
run: make html

- name: Deploy docs 🚀
- name: Deploy dev docs 🚀
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages
folder: doc/_build/html
target-folder: dev
clean: true

- name: Deploy stable docs 🚀
uses: JamesIves/github-pages-deploy-action@4.1.5
if: startsWith(${{ github.ref_name }}, 'v*')
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

❤️

with:
branch: gh-pages
folder: doc/_build/html
target-folder: ${{ github.ref_name }}
clean: true

- name: Cache
uses: actions/cache@v2
Expand Down