File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 9
9
paths :
10
10
- " docs/**"
11
11
- " *.md"
12
- tags : " *"
12
+ tags :
13
+ - " *"
13
14
14
15
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
15
16
jobs :
@@ -28,14 +29,15 @@ jobs:
28
29
- name : Set up Python
29
30
uses : actions/setup-python@v4
30
31
with :
31
- python-version : " 3.9 "
32
+ python-version : " 3.10 "
32
33
cache : " pip"
34
+ cache-dependency-path : " requirements/documentation.txt"
33
35
34
36
- name : Install dependencies
35
37
run : |
36
38
python -m pip install --upgrade pip
37
- python -m pip install -U -r requirements.txt
38
- python -m pip install -U -r requirements/documentation.txt
39
+ python -m pip install --upgrade -r requirements.txt
40
+ python -m pip install --upgrade -r requirements/documentation.txt
39
41
python -m pip install --upgrade ghp-import
40
42
41
43
- name : Build static website
Original file line number Diff line number Diff line change @@ -20,12 +20,13 @@ jobs:
20
20
with :
21
21
python-version : " 3.x"
22
22
cache : " pip"
23
+ cache-dependency-path : " requirements/base.txt"
23
24
24
25
- name : Install dependencies
25
26
run : |
26
27
python -m pip install --upgrade pip
28
+ python -m pip install --upgrade -r requirements.txt
27
29
python -m pip install --upgrade twine
28
- python -m pip install -r requirements.txt
29
30
30
31
- name : Build and publish
31
32
env :
You can’t perform that action at this time.
0 commit comments