Merge pull request #205 from JaCraig/dependabot/nuget/dependencies-a4… #212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Document Site Publish | |
on: | |
push: | |
branches: [ "master" ] | |
jobs: | |
publish-docs: | |
env: | |
BUILD_CONFIG: 'Release' | |
SOLUTION: 'SQLHelper.sln' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ '6.0.x' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK ${{ matrix.dotnet-version }} | |
uses: actions/[email protected] | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Restore dependencies | |
run: dotnet restore | |
- run: dotnet tool update -g docfx | |
- run: docfx docfx_project/docfx.json | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docfx_project/_site |