yj modified bmTraj and mlTraj_fullRadial3_phyllotaxis_uniform_lineAssym2 #95
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Sphinx documentation to Pages | |
| on: | |
| push: | |
| branches: [main] # branch to trigger deployment | |
| jobs: | |
| pages: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - id: deployment | |
| uses: sphinx-notes/pages@v3 | |
| with: | |
| documentation_path: ./docs/rst | |
| requirements_path: ./docs/requirements.txt | |
| publish: false | |
| - uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ${{ steps.deployment.outputs.artifact }} |