-
Notifications
You must be signed in to change notification settings - Fork 61
44 lines (40 loc) · 1.13 KB
/
deploy.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
name: Docusaurus deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
environment: deploy
steps:
- uses: actions/checkout@v4
with:
path: src
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: src/package-lock.json
- name: Build docs
run: |
cd src
npm ci
npm run build
- uses: actions/checkout@v4
with:
path: target
ref: main
repository: serverpod/serverpod.github.io
ssh-key: ${{ secrets.GH_PAGES_DEPLOY }}
- name: Deploy to target
run: |
git config --global user.email "[email protected]"
git config --global user.name "serverpod_docs"
cp -r src/build/* target/docs
cd target
git add .
git commit -m "Deployed by Serverpod docs deploy action"
git push