forked from linux-profile/linux-profile
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 822 Bytes
/
Copy pathpython-app-docs.yml
File metadata and controls
34 lines (30 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: 📘 Update Docs
on:
pull_request:
branches: [ "develop" ]
permissions: read-all
jobs:
deployment:
runs-on: ubuntu-latest
environment: develop
steps:
- uses: actions/checkout@v3
- name: ⚙️ Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: ⚙️ Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt --no-cache-dir
- name: 📘 Build Docs
run: |
mkdocs build
- name: 📘 Update Docs
env:
FTP_HOST: ${{ secrets.FTP_HOST }}
FTP_USERNAME: ${{ secrets.FTP_USERNAME }}
FTP_PASSWORD: ${{ secrets.FTP_PASSWORD }}
FTP_PATH: ${{ secrets.FTP_PATH }}
run: |
python .github/update_docs.py