Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

typo fix

typo fix #77

Workflow file for this run

name: Github Pages
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
BUNDLE_GEMFILE: Gemfile
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Build
run: bundle exec rake book:all
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./public
force_orphan: true