-
-
Notifications
You must be signed in to change notification settings - Fork 30
42 lines (35 loc) · 869 Bytes
/
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: Deploy pathvector.io
on:
push:
branches:
- main
paths:
- "docs/**"
- "generate.sh"
- ".github/workflows/docs.yml"
- "*.go"
jobs:
deploy-docs:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '16'
- uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Generate docs
run: go generate -x
- name: Build docs
run: cd docs && npm install && npm run build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: docs/build/
fqdn: pathvector.io
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}