-
Notifications
You must be signed in to change notification settings - Fork 23
43 lines (38 loc) · 1.06 KB
/
deploy_documentation.yaml
File metadata and controls
43 lines (38 loc) · 1.06 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
name: Deploy Documentation
on:
push:
branches:
- main
paths:
- 'adminforth/documentation/**'
- '.github/workflows/deploy_documentation.yaml'
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: adminforth
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
cache-dependency-path: adminforth/pnpm-lock.yaml
- name: Configure Git
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Install dependencies
run: |
pnpm i
cd documentation
npm ci
- name: Build and deploy docs
run: GIT_USER=${{ github.actor }} GIT_PASS=${{ secrets.DOCUSAURUS_DEPLOY_KEY }} pnpm rollout-doc