nixos-config/.github/workflows/site.yml
dependabot[bot] f8b41d66a8
ci: bump DeterminateSystems/magic-nix-cache-action from 2 to 3 (#17)
Bumps [DeterminateSystems/magic-nix-cache-action](https://github.com/determinatesystems/magic-nix-cache-action) from 2 to 3.
- [Release notes](https://github.com/determinatesystems/magic-nix-cache-action/releases)
- [Commits](https://github.com/determinatesystems/magic-nix-cache-action/compare/v2...v3)

---
updated-dependencies:
- dependency-name: DeterminateSystems/magic-nix-cache-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-08 13:04:32 +00:00

35 lines
836 B
YAML

name: "Build project site"
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/magic-nix-cache-action@v3
- uses: DeterminateSystems/nix-installer-action@v9
- env:
NIXPKGS_ALLOW_UNFREE: "1"
run: nix develop .#docs --impure -c hugo -s ./docs/
- uses: actions/upload-pages-artifact@v3
with:
path: "docs/public"
retention-days: 7
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4