File tree 2 files changed +10
-3
lines changed
2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,4 @@ if ! git status -s|grep '\.po'; then
11
11
fi
12
12
git add .
13
13
git commit -m ' [po] auto sync'
14
- header=" $( echo -n token:" $GITHUB_TOKEN " | base64) "
15
14
git push
Original file line number Diff line number Diff line change 32
32
run : .github/scripts/update.sh
33
33
env :
34
34
TX_TOKEN : ${{ secrets.TRANSIFEX_APIKEY }}
35
+ - name : Restore doctrees Cache
36
+ uses : actions/cache/restore@v3
37
+ with :
38
+ path : ./cpython/Doc/build/doctrees
39
+ key : sphinx-cache-${{env.VERSION}}
35
40
- name : build
36
41
run : .github/scripts/build.sh
42
+ - name : Save doctrees Cache
43
+ uses : actions/cache/save@v3
44
+ with :
45
+ path : ./cpython/Doc/build/doctrees
46
+ key : sphinx-cache-${{env.VERSION}}
37
47
- name : commit
38
48
run : .github/scripts/commit.sh
39
- env :
40
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments