Merge pull request #319 from ousttrue/fix/sphinx_to_docusaurus #53
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 | |
workflow_dispatch: | |
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 | |
- run: mkdir -p public/licenses/1.0/pdf | |
- run: cp docs/_static/licenses/1.0/pdf/jp.pdf public/licenses/1.0/pdf/jp.pdf | |
- run: cp docs/_static/licenses/1.0/pdf/en.pdf public/licenses/1.0/pdf/en.pdf | |
- run: touch public/.nojekyll | |
- run: echo vrm.dev > public/CNAME | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./public |