Skip to content

Merge pull request #94 from Sovereign-Engineering/payment-docs #339

Merge pull request #94 from Sovereign-Engineering/payment-docs

Merge pull request #94 from Sovereign-Engineering/payment-docs #339

Workflow file for this run

name: Checks
on:
push: {}
workflow_dispatch:
jobs:
build_all:
name: Build All
runs-on: [nix]
permissions:
# contents: read # to checkout the git repo
pages: write
id-token: write # Required for actions/deploy-pages
steps:
- name: git checkout
uses: actions/checkout@v6
- name: Build Nix
shell: bash
run: |
nix flake check \
--keep-going \
--no-update-lock-file \
--print-build-logs \
--show-trace
nix build '.#doc' --no-update-lock-file
- uses: actions/upload-pages-artifact@v5
with:
path: result/share/doc/
- uses: actions/deploy-pages@v5
if: ${{ github.ref_name == 'v0' }}