Skip to content

Made unit test more robust (#307) #5

Made unit test more robust (#307)

Made unit test more robust (#307) #5

# Workflow for building and deploying API docs to GitHub Pages
name: Deploy API docs to GitHub Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, cancelling and skipping all in-progress/queued runs in favor of the latest queued.
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build docfx project
run: dotnet build ./Build/docfx
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# path to docfx-generated ouptput
path: './Build/docfx/_site'
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4