Skip to content

Commit

Permalink
ci: rename page workflow, and build doc by nix
Browse files Browse the repository at this point in the history
Signed-off-by: Burgess Chang <[email protected]>
  • Loading branch information
brsvh committed May 25, 2024
1 parent 8f29bfc commit 9eeaa76
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 52 deletions.
52 changes: 0 additions & 52 deletions .github/workflows/page.yaml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: pages

on:
push:
branches:
- main
workflow_call:
workflow_dispatch:

concurrency:
group: pages

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install nix
uses: cachix/install-nix-action@v25

- name: Setup pages
uses: actions/configure-pages@v4

- name: Build doc
run: |
nix build ./doc
cp -r --no-preserve=all result/ _site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

deploy:
name: deploy
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
id-token: write
pages: write
steps:
- name: Deploy pages
id: deployment
uses: actions/deploy-pages@v4

0 comments on commit 9eeaa76

Please sign in to comment.