nixos-anywhere/.github/workflows/gh-pages.yml
2023-01-04 09:41:33 +01:00

28 lines
542 B
YAML

name: github pages
on:
push:
branches:
- main
- staging
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v18
- run: nix build .#docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./result