Bumps [cachix/cachix-action](https://github.com/cachix/cachix-action) from 15 to 16. - [Release notes](https://github.com/cachix/cachix-action/releases) - [Commits](https://github.com/cachix/cachix-action/compare/v15...v16) --- updated-dependencies: - dependency-name: cachix/cachix-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
791 B
YAML
43 lines
791 B
YAML
---
|
|
name: Docs
|
|
|
|
on: # yamllint disable-line rule:truthy
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
concurrency:
|
|
cancel-in-progress: true
|
|
group: pages
|
|
|
|
jobs:
|
|
docs:
|
|
runs-on: ubuntu-24.04
|
|
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
pages: write
|
|
|
|
environment:
|
|
name: github-pages
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: DeterminateSystems/nix-installer-action@v16
|
|
|
|
- uses: cachix/cachix-action@v16
|
|
with:
|
|
name: stylix
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
continue-on-error: true
|
|
|
|
- run: nix build .#docs
|
|
|
|
- uses: actions/upload-pages-artifact@v3
|
|
with:
|
|
path: result
|
|
|
|
- uses: actions/deploy-pages@v4
|