File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build and test
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ paths :
7+ - ' docs/**'
8+
9+ jobs :
10+ deploy :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout
14+ uses : actions/checkout@v4
15+ - name : make script executable
16+ run : chmod u+x build.sh
17+ - name : Setup .NET
18+ uses : actions/setup-dotnet@v4
19+ with :
20+ dotnet-version : 8.x.x
21+ - name : make script executable
22+ run : chmod u+x build.sh
23+ - name : Build Docs
24+ working-directory : ./
25+ run : ./build.sh builddocs
26+ - name : Deploy
27+ uses : JamesIves/github-pages-deploy-action@v4
28+ with :
29+ folder : output # The folder the action should deploy.
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ EndProject
3636Project ("{2150E333-8FDC-42A3-9474-1A3956D46DE8}" ) = ".ci" , ".ci" , "{812698C9-F1C7-4708-8B28-B22FAAC0ADA4}"
3737 Project Section (SolutionItems ) = preProject
3838 .github \workflows \build -and -test .yml = .github \workflows \build -and -test .yml
39+ .github \workflows \deploy -docs .yml = .github \workflows \deploy -docs .yml
3940 EndProject Section
4041EndProject
4142Global
You can’t perform that action at this time.
0 commit comments