configuration.nix/.github/workflows/deploy.yml

34 lines
798 B
YAML
Raw Normal View History

name: Deploy Documentation
on:
workflow_dispatch:
push:
branches: [main]
jobs:
build-website:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@v9
- uses: DeterminateSystems/magic-nix-cache-action@v2
- name: Build documentation
2024-01-15 14:35:57 +01:00
run: nix build .#docs --print-build-logs
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./result
deploy:
2024-01-14 18:59:38 +01:00
needs: build-website
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2