File tree 1 file changed +20
-19
lines changed
1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -17,31 +17,32 @@ permissions:
17
17
concurrency :
18
18
group : " pages"
19
19
cancel-in-progress : false
20
-
20
+
21
21
jobs :
22
22
publish-docs :
23
23
environment :
24
24
name : github-pages
25
25
url : ${{ steps.deployment.outputs.page_url }}
26
26
runs-on : ubuntu-latest
27
27
steps :
28
- - name : Checkout
29
- uses : actions/checkout@v3
30
- - name : Dotnet Setup
31
- uses : actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # pinning V4
32
- with :
33
- dotnet-version : 8.x
28
+ - name : Checkout
29
+ uses : actions/checkout@v4
30
+ - name : Dotnet Setup
31
+ uses : actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # pinning V4
32
+ with :
33
+ dotnet-version : 8.x
34
+
35
+ - run : dotnet tool update -g docfx --version 2.74.0
36
+ - run : docfx docs/docfx.json
34
37
35
- - run : dotnet tool update -g docfx --version 2.74.0
36
- - run : docfx docs/docfx.json
38
+ - name : Setup Pages
39
+ uses : actions/configure-pages@v5
40
+ - name : Upload artifact
41
+ uses : actions/upload-pages-artifact@v3
42
+ with :
43
+ # Upload entire repository
44
+ path : " docs/_site"
45
+ - name : Deploy to GitHub Pages
46
+ id : deployment
47
+ uses : actions/deploy-pages@v4
37
48
38
- - name : Setup Pages
39
- uses : actions/configure-pages@v3
40
- - name : Upload artifact
41
- uses : actions/upload-pages-artifact@v2
42
- with :
43
- # Upload entire repository
44
- path : ' docs/_site'
45
- - name : Deploy to GitHub Pages
46
- id : deployment
47
- uses : actions/deploy-pages@v2
You can’t perform that action at this time.
0 commit comments