File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ concurrency:
77 cancel-in-progress : true
88
99jobs :
10-
1110 build :
1211 name : Build docs
1312 runs-on : ubuntu-latest
3332 key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
3433 restore-keys : |
3534 ${{ runner.os }}-pip-
35+ - name : Cache d2 database
36+ uses : actions/cache/restore@v4.2.0 # We only want to restore the cache, to avoid overwriting the cache on PRs
37+ with :
38+ path : .cache/plugin/d2
39+ key : ${{ runner.os }}-d2
3640 - name : Install d2
3741 run : |
3842 mkdir -p /tmp/d2
7478 key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
7579 restore-keys : |
7680 ${{ runner.os }}-pip-
81+ - name : Cache d2 database
82+ uses : actions/cache@v4.2.0
83+ with :
84+ path : .cache/plugin/d2
85+ key : ${{ runner.os }}-d2
7786 - name : Install d2
7887 run : |
7988 mkdir -p /tmp/d2
You can’t perform that action at this time.
0 commit comments