File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 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
1111fi
1212git add .
1313git commit -m ' [po] auto sync'
14- header=" $( echo -n token:" $GITHUB_TOKEN " | base64) "
1514git push
Original file line number Diff line number Diff line change 3232 run : .github/scripts/update.sh
3333 env :
3434 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}}
3540 - name : build
3641 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}}
3747 - name : commit
3848 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