File tree Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Expand file tree Collapse file tree 1 file changed +19
-4
lines changed Original file line number Diff line number Diff line change 5
5
branches : [master]
6
6
7
7
jobs :
8
+ build-changelog :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - name : Create Changelog
13
+ uses :
heinrichreimer/[email protected]
14
+ with :
15
+ token : ${{ secrets.GITHUB_TOKEN }}
16
+ output : CHANGELOG.md
17
+ - name : Upload changelog
18
+ uses : actions/upload-artifact@v2
19
+ with :
20
+ name : changelog
21
+ path : CHANGELOG.md
8
22
build-gh-pages :
9
23
runs-on : windows-latest
10
24
steps :
@@ -22,11 +36,12 @@ jobs:
22
36
- name : Build Solution
23
37
run : .\build.ps1 --target Compile --no-logo
24
38
shell : powershell
25
- - name : Create Changelog
26
- uses :
heinrichreimer/[email protected]
39
+ - name : Download docs artifact
40
+ id : cl
41
+ uses : actions/download-artifact@v2
27
42
with :
28
- token : ${{ secrets.GITHUB_TOKEN }}
29
- output : docs/CHANGELOG.md
43
+ name : changelog
44
+ path : docs
30
45
- name : Build Documentation
31
46
run : docfx docs/docfx.json
32
47
- name : Upload docs artifact
You can’t perform that action at this time.
0 commit comments