Merge pull request #139 from HamletTanyavong/dev #141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate Documentation Site for Mathematics.NET | |
name: "Generate Documentation Site" | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
concurrency: | |
group: pages | |
cancel-in-progress: true | |
jobs: | |
publish-docs: | |
name: Generate Documentation Site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Build Mathematics.NET Project | |
run: | | |
cd src/Mathematics.NET | |
dotnet build -c Release | |
- name: Update DocFX | |
run: dotnet tool update -g docfx | |
- name: Run DocFX | |
run: docfx docs/docfx.json | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_site | |
cname: mathematics.hamlettanyavong.com | |
force_orphan: true |