Expose 'unSatInt' and 'fromSatInt' and add instances for 'CostModelAp… #392
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build and Deploy to Github Pages" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
build-haddock-site: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
environment: | |
name: github-pages | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: nixbuild/nix-quick-install-action@v26 | |
with: | |
nix_conf: | | |
experimental-features = nix-command flakes | |
accept-flake-config = true | |
- name: Build haddock site | |
run: | | |
nix build .#combined-haddock | |
mkdir dist | |
cp -RL ./result/share/doc/* ./dist/ | |
- uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: dist | |
target-folder: ${{ github.ref_name }} | |
# We publish our haddock, which is non-trivially big. | |
# So keeping the whole history is expensive, and anyway we don't need it. | |
single-commit: true |