ci: deploy the manual to GitHub Pages

This commit is contained in:
zimbatm 2020-10-19 21:04:32 +02:00 committed by Robert Helgesson
parent 731959ef0e
commit 1c4ced745c
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 28 additions and 0 deletions

28
.github/workflows/github_pages.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: GitHub Pages
on:
push:
branches:
- master
jobs:
publish:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v10
with:
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v6
with:
name: nix-community
signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}'
- run: |
nix-build -A docs.html
cp -r result/share/doc/home-manager public
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public