generated from vrchat-community/template-package
-
Notifications
You must be signed in to change notification settings - Fork 22
58 lines (49 loc) · 1.26 KB
/
build-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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Build documentation
on:
push:
branches: [main]
pull_request: {}
workflow_dispatch: {}
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install docfx
run: |
sudo apt-get -y update
sudo apt-get -y install dotnet7
dotnet tool update -g docfx
- name: Build documentation
run: |
docfx docfx~/docfx.json
- uses: actions/upload-artifact@v3
if: always()
with:
name: docs
path: docfx~/_site
publish-docs:
if: github.ref == 'refs/heads/main' && github.repository == 'bdunderscore/ndmf'
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
concurrency:
group: docs-publish
cancel-in-progress: true
needs: build-docs
steps:
- uses: actions/download-artifact@v3
with:
name: docs
path: docs
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2