fix bug #16
This file contains 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: Node.js CI | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [10.7.0] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Cache Node.js | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/.nvmrc') }} | |
restore-keys: ${{ runner.os }}-node- | |
- name: Use Node.js version ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies and build GitBook | |
run: | | |
npm install graceful-fs@latest --save && | |
npm install gitbook-cli -g && | |
npm install gitbook-plugin-lightbox && | |
npm install gitbook-plugin-quiz && | |
gitbook install && | |
gitbook build . ./build && | |
touch ./build/README.md | |
- name: Deploy to GitHub Pages | |
if: success() | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./build | |
publish_branch: gh-pages |