Skip to content

Merge pull request #23 from MrWoafer/fix-image-turning #50

Merge pull request #23 from MrWoafer/fix-image-turning

Merge pull request #23 from MrWoafer/fix-image-turning #50

Workflow file for this run

name: docfx-build-deploy-github-pages
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Find and copy specific files
run: |
# Look for LICENSE.md, README.md, and CHANGELOG.md in subdirectories
find . -name LICENSE.md -exec cp {} . \;
find . -name README.md -exec cp {} . \;
find . -name CHANGELOG.md -exec cp {} . \;
# Check if a "Screenshots" folder exists and copy it to the root
if [ -d "Screenshots" ]; then
cp -r Screenshots .
fi
shell: bash
- name: Install DocFX
run: dotnet tool install -g docfx
- name: Use README.md as index.md
run: cp README.md Documentation/index.md
- name: Build
run: docfx Documentation/docfx.json
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: _site