Merge pull request #10966 from nextcloud/backport/10959/stable26 #22507
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: "Pull Request Docs Check" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- stable* | |
jobs: | |
user_manual: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
docs-folder: "user_manual/" | |
pre-build-command: pip install -r requirements.txt | |
build-command: make html | |
- name: Pack the results in local tar file | |
shell: bash | |
run: tar czf /tmp/documentation.tar.gz -C user_manual/_build/html . | |
- name: Upload static documentation | |
uses: actions/[email protected] | |
with: | |
name: User manual.zip | |
path: "/tmp/documentation.tar.gz" | |
user_manual-en: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
docs-folder: "user_manual/" | |
pre-build-command: pip install -r requirements.txt | |
build-command: make html-lang-en | |
developer_manual: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
docs-folder: "developer_manual/" | |
pre-build-command: pip install -r requirements.txt | |
build-command: make html | |
- name: Pack the results in local tar file | |
shell: bash | |
run: tar czf /tmp/documentation.tar.gz -C developer_manual/_build/html/com . | |
- name: Upload static documentation | |
uses: actions/[email protected] | |
with: | |
name: Developer manual.zip | |
path: "/tmp/documentation.tar.gz" | |
admin_manual: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: ammaraskar/sphinx-action@master | |
with: | |
docs-folder: "admin_manual/" | |
pre-build-command: pip install -r requirements.txt | |
build-command: make html | |
- name: Pack the results in local tar file | |
shell: bash | |
run: tar czf /tmp/documentation.tar.gz -C admin_manual/_build/html/com . | |
- name: Upload static documentation | |
uses: actions/[email protected] | |
with: | |
name: Administration manual.zip | |
path: "/tmp/documentation.tar.gz" |