Skip to content

Reverted dataset attribute order to alphabetically #40

Reverted dataset attribute order to alphabetically

Reverted dataset attribute order to alphabetically #40

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- master
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
- name: Remove testing and other doc artifacts (As much as feasible at the moment)
run: |
find AoE2ScenarioParser/datasets -maxdepth 2 -name '*.py' -exec perl -i -pe 's/ >>> .*//' {} +
find AoE2ScenarioParser/datasets -maxdepth 2 -name '*.py' -exec perl -i -pe 's/ <.*: .*>//' {} +
find AoE2ScenarioParser/datasets -maxdepth 2 -name '*.py' -exec perl -i -pe 's/ \*\*\(?:\|Examples\|Methods\|Inherited\)\*\*:\?//' {} +
find AoE2ScenarioParser/datasets -maxdepth 2 -name '*.py' -exec perl -i -pe 's/\[([A-Za-z0-9 ]*)\]\((?!https)[^(]+\)/$1/g' {} +
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: mkdocs.yml
EXTRA_PACKAGES: build-base
REQUIREMENTS: requirements/dev.txt