2024-07-10 21:59:27 +00:00
|
|
|
name: Build Blog
|
2024-07-10 21:44:41 +00:00
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2024-07-10 21:59:27 +00:00
|
|
|
build:
|
|
|
|
name: Build
|
2024-07-10 21:44:41 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2025-04-21 15:56:40 +00:00
|
|
|
- uses: "https://github.com/cachix/install-nix-action@v31"
|
|
|
|
- uses: "https://github.com/DeterminateSystems/magic-nix-cache-action@main"
|
2025-04-21 15:16:40 +00:00
|
|
|
with:
|
|
|
|
diagnostic-endpoint: ""
|
2024-07-10 21:44:41 +00:00
|
|
|
- name: Build site
|
2025-04-21 15:14:11 +00:00
|
|
|
run: nix build
|