Merge pull request #2181 from FujiSunflower/master #575
This file contains 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: Sphinx | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
steps: | |
- uses: actions/checkout@v1 | |
- run: sudo apt install gettext | |
- run: pip install -r requirements.txt | |
- name: sphinx build(ja) | |
working-directory: ./docs | |
run: sphinx-build . ../public/ja | |
- name: sphinx build(en) | |
working-directory: ./docs | |
run: sphinx-build . ../public/en -D language=en -A language=en | |
- name: copy index.html | |
run: cp docs/index.html public/index.html | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public |