-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (45 loc) · 1.36 KB
/
docfx.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
name: DocFX
on:
push:
branches: [ dev ]
paths:
- '.github/workflows/docfx.yml'
repository_dispatch:
types: [game_version_update, game_version_update_patch]
workflow_dispatch:
env:
# Disable the .NET logo in the console output.
DOTNET_NOLOGO: true
# Disable the .NET first time experience to skip caching NuGet packages and speed up the build.
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
# Disable sending .NET CLI telemetry to Microsoft.
DOTNET_CLI_TELEMETRY_OPTOUT: true
jobs:
docfx:
name: DocFX documentation
runs-on: ubuntu-latest
steps:
- name: DocFX Setup
uses: butr/actions-docfx-setup@v4
with:
github-token: ${{secrets.GITHUB_TOKEN}}
- name: Download latest ref packages
run: >-
$game_version=$env:GAME_VERSION;
$game_version=$game_version.substring(1);
dotnet run -p build/PackageDownloader -- -v $game_version -t $PWD -f https://api.nuget.org/v3/index.json;
shell: pwsh
env:
GAME_VERSION: ${{vars.GAME_VERSION_STABLE}}
- name: Run DocFX
run: >-
docfx docs/docfx-meta.json;
docfx docs/docfx-build.json;
shell: pwsh
- name: Deploy DocFX
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: docs/_site
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}