Skip to content

Fix typo in documentation #13

Fix typo in documentation

Fix typo in documentation #13

Workflow file for this run

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