summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/jsdoc.yml
blob: 9d9d394585012ff429867cb9a6c3c1e34f047008 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: GitHub pages

on:
  push:
    branches:
      - master

jobs:
  deploy:
    if: github.repository == 'jow-/ucode'
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Install
        run: npm install

      - name: Build
        run: npm run doc

      - name: Archive docs as artifact
        uses: actions/upload-artifact@v3
        with:
          name: docs
          path: ./docs/

      - name: Deploy
        uses: peaceiris/actions-gh-pages@v3
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          publish_dir: ./docs/
          enable_jekyll: true