about summary refs log tree commit diff
path: root/.github/workflows/deploy-doc.yml
blob: d3c710a504aba214b45cbaadbfa51877228f3bf6 (plain) (blame)
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
name: Build and Deploy Documentation

on:
  push:
    branches: [ main ]

jobs:
  deploy-doc:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2.3.4
      - uses: cachix/install-nix-action@v12
        with:
          nix_path: nixpkgs=channel:nixos-unstable
      - uses: cachix/cachix-action@v8
        with:
          name: buchstabensuppe
          authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
      - name: Build web output
        run: |
          nix-build -A deploy doc/web.nix
          ./result -w tmp
      - name: Deploy output to GitHub Pages
        uses: JamesIves/github-pages-deploy-action@3.7.1
        with:
          GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
          BRANCH: gh-pages
          CLEAN: true
          FOLDER: tmp