File tree 1 file changed +8
-7
lines changed
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
build :
16
16
runs-on : windows-latest
17
- name : Update DocFX documentation
17
+ name : Generate DocFX documentation
18
18
steps :
19
19
- uses : actions/checkout@v2
20
20
with :
@@ -43,20 +43,21 @@ jobs:
43
43
deploy :
44
44
needs : [build] # The second job must depend on the first one to complete before running and uses ubuntu-latest instead of windows.
45
45
runs-on : ubuntu-latest
46
+ name : Update github pages docs
46
47
steps :
47
48
- name : Checkout
48
49
uses : actions/checkout@v3
49
50
50
- - name : Download Artifacts 🔻 # The built project is downloaded into the 'site' folder.
51
+ - name : Download Artifacts # The built project is downloaded into the 'site' folder.
51
52
uses : actions/download-artifact@v1
52
53
with :
53
54
name : site
54
55
55
56
- name : Publish documentation to Github Pages
56
57
uses : JamesIves/github-pages-deploy-action@v4
57
58
with :
58
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
59
- BRANCH : gh-pages
60
- FOLDER : site
61
- TARGET_FOLDER : help
62
- CLEAN : false
59
+ token : ${{ secrets.GITHUB_TOKEN }}
60
+ branch : gh-pages
61
+ folder : site
62
+ target-folder : help
63
+ clean : false
You can’t perform that action at this time.
0 commit comments