Skip to content

Commit

Permalink
Create build-documentation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gsilvamartin authored Feb 28, 2024
1 parent 7bff2ea commit f7904cf
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Validate NetPlus Documentation

on:
pull_request:
branches: [ "main" ]

permissions:
actions: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
validate-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Dotnet Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.x

- run: dotnet tool update -g docfx
- run: docfx docs/docfx.json

0 comments on commit f7904cf

Please sign in to comment.