ci: update sonarcloud project key #44
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: DocFX | |
on: | |
push: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
docfx: | |
runs-on: ubuntu-latest | |
name: Publish Documentation | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Copy favicon | |
run: | | |
mkdir docfx_project/images | |
cp branding_Icon.png docfx_project/images/favicon.png | |
- name: Build documentation | |
uses: nikeee/[email protected] | |
with: | |
args: docfx_project/docfx.json | |
- name: Publish documentation on GitHub Pages | |
uses: maxheld83/ghpages@master | |
env: | |
BUILD_DIR: docfx_project/_site | |
GH_PAT: ${{ secrets.GH_PAT }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |