Skip to content

Commit 0e957b7

Browse files
add build euid workflow (#177)
Co-authored-by: Alexander Savchenko <[email protected]> Co-authored-by: SavchenkoAlexander <[email protected]>
1 parent e7a4e36 commit 0e957b7

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: build eud on pull request
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
build-site:
8+
runs-on: windows-latest
9+
steps:
10+
- name: Checkout branch
11+
uses: actions/checkout@v3
12+
13+
- name: Check status
14+
run: git status
15+
16+
- name: Download docfx
17+
run: curl https://github.com/dotnet/docfx/releases/download/v2.59.2/docfx.zip -L -o ../docfx.zip
18+
19+
- name: Expand docfx
20+
run: Expand-Archive ../docfx.zip -DestinationPath ../docfx
21+
22+
- name: Build site with docfx
23+
run: ../docfx/docfx.exe build docfx.json --warningsAsErrors

0 commit comments

Comments
 (0)