Skip to content

Commit fb7422b

Browse files
committed
Fixed Documenatation CI
1 parent f7295e6 commit fb7422b

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/documentation.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,21 @@ name: Create Documentation 📚
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
# Build the documentation
1010
build:
11-
runs-on: ubuntu-latest #windows-latest # Required by DocFX
11+
runs-on: windows-latest # Required by DocFX
1212
steps:
1313
- uses: actions/checkout@v3
1414
- uses: actions/setup-dotnet@v2
15-
- uses: crazy-max/[email protected]
16-
17-
- name: Install DocFX
18-
run: choco install -y docfx && docfx --version
1915

16+
- name: Install DocFX
17+
run: |
18+
choco install -y docfx
19+
docfx --version
20+
2021
- name: Use README.md as index.md
2122
run: cp README.md Docfx/index.md
2223

0 commit comments

Comments
 (0)