neovim-flake/.github/workflows/manual.yml

39 lines
884 B
YAML
Raw Normal View History

2023-04-15 10:44:12 +02:00
name: "Build and deploy documentation"
on:
2023-02-06 20:02:44 +01:00
workflow_dispatch:
push:
branches:
- main
paths:
# build the manuals only when docs directory is updated
- docs/**
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Nix
uses: cachix/install-nix-action@v18
- name: Build
run: |
2023-02-06 20:02:44 +01:00
nix build '.#docs'
cp -r result/share/doc/neovim-flake public
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public