43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
|
name: CI
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||
|
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||
|
concurrency:
|
||
|
group: "pages"
|
||
|
cancel-in-progress: false
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-22.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
with:
|
||
|
lfs: true
|
||
|
- uses: DeterminateSystems/nix-installer-action@main
|
||
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
||
|
- name: Run `nix build`
|
||
|
run: nix build .
|
||
|
- uses: actions/upload-pages-artifact@v3
|
||
|
with:
|
||
|
path: result/
|
||
|
|
||
|
deploy:
|
||
|
environment:
|
||
|
name: github-pages
|
||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||
|
runs-on: ubuntu-latest
|
||
|
needs: build
|
||
|
permissions:
|
||
|
pages: write # to deploy to Pages
|
||
|
id-token: write # to verify the deployment originates from an appropriate source
|
||
|
steps:
|
||
|
- name: Deploy to GitHub Pages
|
||
|
id: deployment
|
||
|
uses: actions/deploy-pages@v4
|
||
|
with:
|
||
|
preview: true
|