forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 937 Bytes
/
dev-docs.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
name: Build Developer Guide
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
name: Dev docs
defaults:
run:
shell: bash
working-directory: docs
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Install Graphviz
run: sudo apt install graphviz
- run: npm ci
- run: npm run build
- name: Check build status
run: |
if [ ! -d "./_site" ]; then
echo "Build Error"
exit 1
fi
- name: Deploy on push
if: ${{ success() && github.event_name == 'push' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run deploy