Skip to content

Merge branch 'main' of https://github.com/thiomajid/EfLight #10

Merge branch 'main' of https://github.com/thiomajid/EfLight

Merge branch 'main' of https://github.com/thiomajid/EfLight #10

Workflow file for this run

name: Publish Docs
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
publish-docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Install and run DocFX
run: |
dotnet tool update -g docfx
docfx docfx.json
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./_site"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4