Update dependency django to v4.2.17 [SECURITY] #10909
Workflow file for this run
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 | |
jobs: | |
appstore_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install poetry | |
run: pip install poetry==1.6.1 | |
- name: Install dependencies | |
run: poetry install --with docs | |
- name: Build docs | |
run: make docs | |
- name: Pack the results in local tar file | |
shell: bash | |
run: tar czf /tmp/documentation.tar.gz -C docs/_build/html . | |
- name: Upload static documentation | |
uses: actions/upload-artifact@v4.4.0 | |
with: | |
name: Appstore docs.zip | |
path: "/tmp/documentation.tar.gz" |