Fixed more bugs/errors in fetching util #19
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/Generate autodocs" | |
on: | |
push: | |
branches: | |
- 'v3.x.x' | |
paths: | |
- '_rsruntime/*.py' | |
- '_rsruntime/**/*.py' | |
workflow_dispatch: | |
concurrency: | |
group: pull_push_on_${{ github.ref }} | |
jobs: | |
gen_autodocs: | |
name: "Generate AutoDocs" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
cache: pip | |
- name: "Explicitly install requirements" | |
run: "python3 -m pip install -r requirements.txt" | |
- name: "Execute makedoc.py" | |
run: "python3 ./devel/makedoc.py" | |
- name: "Commit and push changes" | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Automatic documentation update (triggered by ${{ github.actor }}: ${{ github.sha }})" | |
docs_to_wiki: | |
name: "Upload docs to wiki" | |
needs: gen_autodocs | |
uses: ./.github/workflows/docs-to-wiki.yml | |
secrets: inherit |