11.stylix/.github/workflows/docs.yml
dependabot[bot] 2177469520 ci: bump DeterminateSystems/nix-installer-action from 16 to 17
Bumps [DeterminateSystems/nix-installer-action](https://github.com/determinatesystems/nix-installer-action) from 16 to 17.
- [Release notes](https://github.com/determinatesystems/nix-installer-action/releases)
- [Commits](https://github.com/determinatesystems/nix-installer-action/compare/v16...v17)

---
updated-dependencies:
- dependency-name: DeterminateSystems/nix-installer-action
  dependency-version: '17'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-04-24 17:31:12 -07:00

45 lines
842 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
with:
persist-credentials: false
- uses: DeterminateSystems/nix-installer-action@v17
- 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