add lfs cache ?
This commit is contained in:
parent
ec8a416ac1
commit
ed2417bac2
1 changed files with 10 additions and 0 deletions
10
.github/workflows/lektor-check.yml
vendored
10
.github/workflows/lektor-check.yml
vendored
|
@ -18,6 +18,16 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
- name: Cache lfs data
|
||||||
|
uses: actions/cache@v1
|
||||||
|
with:
|
||||||
|
path: ~/.git
|
||||||
|
key: lfs
|
||||||
|
restore-keys: lfs
|
||||||
|
- name: install and pull lfs
|
||||||
|
run: |
|
||||||
|
apt-get install git-lfs
|
||||||
|
git lfs pull
|
||||||
- name: check with lektor
|
- name: check with lektor
|
||||||
run: |
|
run: |
|
||||||
pip install lektor
|
pip install lektor
|
||||||
|
|
Loading…
Reference in a new issue