File: docs.yml

package info (click to toggle)
org-roam 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 38,976 kB
  • sloc: lisp: 4,861; makefile: 118; sh: 6
file content (31 lines) | stat: -rw-r--r-- 690 bytes parent folder | download
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
# * docs.yml --- Build the documentation and publish to Github Pages

name: "Docs"
on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: true
    steps:
    - uses: actions/checkout@v2

    - name: Install deps
      run: |
        sudo apt-get install texinfo

    - name: Build docs
      continue-on-error: false
      run: make html

    - name: Deploy 🚀
      uses: JamesIves/github-pages-deploy-action@releases/v3
      with:
        ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
        BRANCH: gh-pages # The branch the action should deploy to.
        FOLDER: doc # The folder the action should deploy.
        CLEAN: true