Fix error in overcharm logic handling. Add tests for EquipCharmVariable. #53
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-source ] | |
jobs: | |
generate-docs: | |
runs-on: windows-2022 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: master | |
- name: Checkout doc source | |
uses: actions/checkout@v3 | |
with: | |
ref: docs-source | |
path: docs | |
# setup .NET | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
# Install DocFX | |
- name: Setup DocFX | |
uses: crazy-max/ghaction-chocolatey@v1 | |
with: | |
args: install docfx | |
# Build and publish docs | |
- name: DocFX build | |
working-directory: docs | |
run: docfx docfx.json | |
continue-on-error: false | |
- name: Publish | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs/_site | |
force_orphan: true |