Skip to content

Commit

Permalink
Add workflow to auto-update manual
Browse files Browse the repository at this point in the history
  • Loading branch information
malob committed Mar 22, 2022
1 parent 17fbc68 commit f3a7282
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/update-manual.yml
@@ -0,0 +1,39 @@
name: Update manual
on:
push:
branches:
- master
paths:
- '**.nix'

jobs:
update-manual:
runs-on: macos-10.15
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
# So that we fetch all branches, since we need to checkout the `gh-pages` branch later.
fetch-depth: 0

- name: Install Nix
uses: cachix/install-nix-action@v16
with:
extra_nix_config: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
- name: Build manual
run: |
nix-build ./release.nix -I nixpkgs=channel:nixpkgs-21.11-darwin -I darwin=. -A manualHTML
- name: Push update to manual
run: |
git checkout gh-pages
rm -rf manual
cp -R result/share/doc/darwin manual
rm result
git config user.name github-actions
git config user.email github-actions@github.com
git add --all
git commit -m "Update manual"
git push
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
*.swp
result*

0 comments on commit f3a7282

Please sign in to comment.