aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: a922a117dad5813f2fdc271d8b1d61dd525a5f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: build

on: push

jobs:
  sphinx:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Build HTML
        uses: XanaduAI/sphinx-action@08cb9868314fb5be5f28644b540a38b8faaf8e87
        with:
          pre-build-command: pip install myst-parser sphinx-rtd-theme
          docs-folder: .
      - name: Install RSA key
        run: |
          mkdir .ssh
          chmod 700 .ssh
          echo "${{ secrets.RSA_KEY }}" > .ssh/id_rsa
          chmod 600 .ssh/id_rsa
      - name: Publish
        run: make publish USER=docs