-
Notifications
You must be signed in to change notification settings - Fork 11
36 lines (30 loc) · 1003 Bytes
/
pages.yaml
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
34
35
36
---
# This workflow runs when PRs are merged and tags/builds/publishes a release.
# Run when PRs to main are closed.
on:
push:
branches:
- main
workflow_dispatch:
name: Build and publish a release
jobs:
github-pages:
name: Publish user manual to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: cachix/install-nix-action@v22
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
extra_nix_config: |
extra-experimental-features = nix-command flakes
accept-flake-config = true
- name: Checkout code
uses: actions/checkout@v3
- name: Build user manual
run: |
RESULT=$(nix build --no-link --print-out-paths --print-build-logs .#ghciwatch.user-manual)
cp -r "$RESULT/share/ghciwatch/html-manual" ghciwatch-user-manual
- name: Publish to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ghciwatch-user-manual/