fix cueholder return value with empty set string #100
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: docs | |
on: | |
push: | |
branches: [ master, docs ] | |
jobs: | |
docfx: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: Checkout docs | |
uses: actions/checkout@v3 | |
with: | |
ref: docs | |
path: docs | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
- name: Setup ms-build, mono | |
run: sudo apt-get install -y nuget mono-devel mono-xbuild | |
- name: Download DocFX | |
working-directory: docs | |
run: | | |
wget https://github.com/dotnet/docfx/releases/download/v2.61.0/docfx-linux-x64-v2.61.0.zip -O docfx.zip | |
unzip docfx.zip -d docfx | |
- name: Build docs | |
working-directory: docs | |
run: | | |
docfx/docfx | |
- name: Publish | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_site | |
force_orphan: true |