Fix typo in documentation #13
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: github pages | |
| on: | |
| push: | |
| branches: | |
| - source | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| env: | |
| JEKYLL_ENV: production | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: build | |
| run: | | |
| sudo apt-get install -y ruby-bundler python3-docutils | |
| git submodule update --init | |
| sudo bundle install | |
| bundle exec jekyll build | |
| - name: deploy | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_branch: master | |
| publish_dir: _site |