2024-05-22 22:17:41 -07:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-nix:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-10-31 23:03:46 -07:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2024-10-31 23:05:59 -07:00
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
2024-05-22 22:17:41 -07:00
|
|
|
|
2024-10-31 23:05:59 -07:00
|
|
|
# - name: Install Nix
|
|
|
|
# uses: cachix/install-nix-action@v30
|
|
|
|
# with:
|
|
|
|
# github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# extra_nix_config: |
|
|
|
|
# access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# allow-import-from-derivation = true
|
|
|
|
# auto-optimise-store = true
|
|
|
|
# experimental-features = nix-command flakes
|
|
|
|
# substituters = https://cache.nixos.org https://cache.iog.io
|
|
|
|
# trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=
|
2024-05-22 22:17:41 -07:00
|
|
|
|
|
|
|
- run: nix build --accept-flake-config
|
|
|
|
|
|
|
|
- name: Artifact pages
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: pages
|
|
|
|
path: result/dist
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
if: github.ref == 'refs/heads/main'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: [build-nix]
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Download artifact
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
name: pages
|
|
|
|
path: result
|
|
|
|
|
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
if: success()
|
|
|
|
uses: crazy-max/ghaction-github-pages@v4.0.0
|
|
|
|
with:
|
|
|
|
build_dir: result
|
|
|
|
target_branch: gh-pages
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|