File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,19 @@ jobs:
27
27
repository : ' python/cpython'
28
28
ref : ${{env.VERSION}}
29
29
path : cpython
30
+ - uses : actions/cache/restore@v3
31
+ with :
32
+ path : |
33
+ cpython/Doc/build
34
+ docs
35
+ key : cache-${{ inputs.version }}-${{ github.run_id }}
36
+ restore-keys : cache-${{ inputs.version }}-
30
37
- name : Checkout Current Branch
31
38
uses : actions/checkout@v3
32
39
with :
33
40
ref : ${{env.VERSION}}
34
41
path : docs
42
+ clean : false
35
43
- name : prepare
36
44
run : .github/scripts/prepare.sh
37
45
- name : update
47
55
run : .github/scripts/build.sh
48
56
- uses : actions/cache/save@v3
49
57
with :
50
- path : cpython/Doc/build
58
+ path : |
59
+ cpython/Doc/build
60
+ docs
51
61
key : cache-${{ inputs.version }}-${{ github.run_id }}
52
62
- name : stat
53
63
run : python .github/scripts/tx_stat.py > ./docs/.stat.json
You can’t perform that action at this time.
0 commit comments