Skip to content

Commit 73af92c

Browse files
authored
update cache path
1 parent 52551de commit 73af92c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/scripts/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ cd cpython/Doc || exit 1
1414
mkdir -p locales/"$LOCALE"/
1515
ln -sfn "$(realpath ../../docs)" locales/"$LOCALE"/LC_MESSAGES
1616
pip3 install -q -r requirements.txt
17-
make html SPHINXOPTS="-D language=$LOCALE -D gettext_compact=0 -D html_search_language='' -W --keep-going"2>>(error)
17+
make html SPHINXOPTS="-D language=$LOCALE -D gettext_compact=0 -W --keep-going"2>>(error)

.github/workflows/python-312.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ jobs:
3232
run: .github/scripts/update.sh
3333
env:
3434
TX_TOKEN: ${{ secrets.TRANSIFEX_APIKEY }}
35-
- name: Restore doctrees Cache
35+
- name: Restore build Cache
3636
uses: actions/cache/restore@v3
3737
with:
38-
path: ./cpython/Doc/build/doctrees
38+
path: ./cpython/Doc/build
3939
key: sphinx-cache-${{env.VERSION}}
4040
- name: build
4141
run: .github/scripts/build.sh
42-
- name: Save doctrees Cache
42+
- name: Save build Cache
4343
uses: actions/cache/save@v3
4444
with:
45-
path: ./cpython/Doc/build/doctrees
45+
path: ./cpython/Doc/build
4646
key: sphinx-cache-${{env.VERSION}}
4747
- name: commit
4848
run: .github/scripts/commit.sh

0 commit comments

Comments
 (0)
close