Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

対訳表の形式を更新 #4

対訳表の形式を更新

対訳表の形式を更新 #4

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