configuration.nix/.github/workflows/check.yml

58 lines
1.6 KiB
YAML
Raw Normal View History

2024-01-14 17:59:46 +01:00
name: Check flake
on:
push:
branches: [main]
path:
- ./**.nix
- ./flake.lock
2024-01-14 17:59:46 +01:00
pull_request:
schedule:
- cron: 5 4 * * 5 # At 04:05 on Friday.
jobs:
check:
runs-on: ubuntu-22.04
steps:
2024-02-02 15:13:08 +01:00
- uses: actions/checkout@v4
2024-03-17 00:31:26 +01:00
- uses: DeterminateSystems/nix-installer-action@v10
- uses: DeterminateSystems/magic-nix-cache-action@v4
2024-01-14 17:59:46 +01:00
- name: Run `nix flake check`
run: nix flake check
lockfile:
runs-on: ubuntu-22.04
2024-01-14 17:59:46 +01:00
needs: check
if: ${{ github.event_name == 'schedule' }} # only run when scheduled
steps:
2024-02-02 15:13:08 +01:00
- uses: actions/checkout@v4
2024-03-17 00:31:26 +01:00
- uses: DeterminateSystems/nix-installer-action@v10
- uses: DeterminateSystems/update-flake-lock@v21
2024-01-14 17:59:46 +01:00
- name: Run `nix flake check`
run: nix flake check
build-documentation:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }} # only run when not scheduled
steps:
- uses: actions/checkout@v4
2024-03-17 00:31:26 +01:00
- uses: DeterminateSystems/nix-installer-action@v10
- uses: DeterminateSystems/magic-nix-cache-action@v4
- name: Build documentation
run: nix build .#docs --print-build-logs
- name: Upload artifact
2024-03-09 00:05:05 +01:00
uses: actions/upload-pages-artifact@v3
with:
path: ./result
deploy:
runs-on: ubuntu-latest
needs: build-documentation
2024-02-18 17:04:46 +01:00
if: ${{ github.event_name == 'push' }} # only run on main branch
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
2024-03-09 00:05:05 +01:00
uses: actions/deploy-pages@v4