-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.05 KB
/
astro-build.yml
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
name: Deploy Astro to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# 1. Config repository
- name: Checkout code
uses: actions/checkout@v3
# 2. Config Node.js
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 22
# 3. Install pnpm globally
- name: Install pnpm
run: npm install -g pnpm
# 4. Cache pnpm dependencies
- name: Cache pnpm modules
uses: actions/cache@v3
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
# 5. Install dependencies with pnpm
- name: Install dependencies
run: pnpm install
# 6. Compile Astro
- name: Build Astro
run: pnpm run build
# 7. Deploy
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v1