Skip to content

refactor: ci (#261) #48

refactor: ci (#261)

refactor: ci (#261) #48

Workflow file for this run

name: Build and deploy docs
on:
workflow_dispatch:
push:
paths:
- "docs/**/*"
- ".github/workflows/docs.yml"
- ".github/actions/**/*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Lix
uses: ./.github/actions/install-lix
with:
system: x86_64-linux
- name: Build Linux packages
run: nix build -L .#docs
- name: Upload Pages Artifact
uses: "actions/upload-pages-artifact@v3"
with:
path: "result/"
deploy:
needs: build
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@v4