-
Notifications
You must be signed in to change notification settings - Fork 103
95 lines (74 loc) · 1.87 KB
/
website.yml
File metadata and controls
95 lines (74 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: Build & deploy website
on:
push:
branches: [main]
paths:
- "**.lock"
- "**.nix"
- "docs/**"
- "modules/**"
- "package.json"
- "pnpm-lock.yaml"
- "tsconfig.json"
- "astro.config.ts"
- ".github/workflows/website.yml"
pull_request:
branches: [main]
paths:
- "**.lock"
- "**.nix"
- "docs/**"
- "modules/**"
- "package.json"
- "pnpm-lock.yaml"
- "tsconfig.json"
- "astro.config.ts"
- ".github/workflows/website.yml"
workflow_dispatch:
inputs:
deploy:
description: Whether to deploy the website after building
required: false
default: false
type: boolean
jobs:
build:
name: Build site
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install Nix
uses: cachix/install-nix-action@v31
- name: Update options data
run: |
./dev/update-docs-data.sh main
./dev/update-docs-data.sh 25.11 "github:catppuccin/nix/release-25.11?dir=dev/"
- name: Install dependencies
run: |
nix develop .#ci --command pnpm install
- name: Run build
run: |
nix develop .#ci --command nrr build
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: dist/
deploy:
name: Deploy website
needs: build
if: ${{ github.event_name == 'push' || inputs.deploy }}
runs-on: ubuntu-latest
concurrency:
group: github-pages
cancel-in-progress: true
environment:
name: github-pages
url: ${{ steps.deploy.outputs.page_url }}
permissions:
id-token: write
pages: write
steps:
- name: Deploy to GitHub Pages
id: deploy
uses: actions/deploy-pages@v5