Skip to content

warning-policy = "error" #6

warning-policy = "error"

warning-policy = "error" #6

Workflow file for this run

name: "Deploy"
on:
pull_request:
push:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
- run: nix develop .#ci --command echo shellHook
- run: nix flake check
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: book
deploy:
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
needs: tests
runs-on: ubuntu-latest
name: Deploy
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2