Skip to content

Merge pull request #1997 from shimat/fix/stale-ffmpeg-dll-version-in-… #330

Merge pull request #1997 from shimat/fix/stale-ffmpeg-dll-version-in-…

Merge pull request #1997 from shimat/fix/stale-ffmpeg-dll-version-in-… #330

Workflow file for this run

name: DocFX
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v7
with:
fetch-depth: 1
- name: Install .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 8.0.x
- name: Clean build outputs
shell: pwsh
run: |
Get-ChildItem -Path . -Include bin,obj -Recurse -Directory | Remove-Item -Recurse -Force
- name: Install DocFX
shell: pwsh
run: dotnet tool install -g docfx
- name: Build Documentation
shell: pwsh
run: docfx docs/docfx/docfx.json
- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: docs/docfx/_site
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5