We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7295e6 commit fb7422bCopy full SHA for fb7422b
.github/workflows/documentation.yml
@@ -3,20 +3,21 @@ name: Create Documentation 📚
3
on:
4
push:
5
branches:
6
- - master
+ - main
7
8
jobs:
9
# Build the documentation
10
build:
11
- runs-on: ubuntu-latest #windows-latest # Required by DocFX
+ runs-on: windows-latest # Required by DocFX
12
steps:
13
- uses: actions/checkout@v3
14
- uses: actions/setup-dotnet@v2
15
- - uses: crazy-max/[email protected]
16
-
17
- - name: Install DocFX
18
- run: choco install -y docfx && docfx --version
19
+ - name: Install DocFX
+ run: |
+ choco install -y docfx
+ docfx --version
20
+
21
- name: Use README.md as index.md
22
run: cp README.md Docfx/index.md
23
0 commit comments