Skip to content

ドキュメントのタイトルの表記揺れを修正 #29

ドキュメントのタイトルの表記揺れを修正

ドキュメントのタイトルの表記揺れを修正 #29

Workflow file for this run

# https://github.com/marketplace/actions/mdbook-action を元に編集
name: github pages
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: 'latest'
- run: mdbook build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
publish_branch: gh-pages