-
Notifications
You must be signed in to change notification settings - Fork 162
53 lines (45 loc) · 1.36 KB
/
pr-preview.yml
File metadata and controls
53 lines (45 loc) · 1.36 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
---
name: PR Preview
on:
pull_request:
types: [opened, synchronize, reopened, closed]
jobs:
deploy-preview:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
if: github.event.action != 'closed'
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
if: github.event.action != 'closed'
run: npm ci
- name: Update Astro config for PR preview
if: github.event.action != 'closed'
run: |
cat > astro.config.mjs << 'EOF'
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
// https://astro.build/config
export default defineConfig({
integrations: [react()],
site: 'https://danmarshall.github.io',
base: '/google-font-to-svg-path/pr-preview/pr-${{ github.event.pull_request.number }}',
});
EOF
- name: Build Astro site
if: github.event.action != 'closed'
run: npm run build
- name: Deploy PR Preview
uses: rossjrw/pr-preview-action@v1
with:
source-dir: ./dist
preview-branch: gh-pages
umbrella-dir: pr-preview