Skip to content

Commit 172c48e

Browse files
Update readme and workflow for LFS
1 parent d183091 commit 172c48e

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

.github/workflows/build-and-test.yml

+14
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,20 @@ jobs:
5656

5757
steps:
5858
- uses: actions/checkout@v2
59+
60+
# See https://github.com/actions/checkout/issues/165#issuecomment-657673315
61+
- name: Create LFS file list
62+
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id
63+
64+
- name: Restore LFS cache
65+
uses: actions/cache@v2
66+
id: lfs-cache
67+
with:
68+
path: .git/lfs
69+
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1
70+
71+
- name: Git LFS Pull
72+
run: git lfs pull
5973

6074
- name: Install NuGet
6175
uses: NuGet/setup-nuget@v1

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ If working with Windows please ensure that you have enabled long file paths in g
7676
git config --system core.longpaths true
7777
```
7878

79-
This repository contains [git submodules](https://blog.github.com/2016-02-01-working-with-submodules/). To add the submodules to the project, navigate to the repository root and type:
79+
This repository uses [Git Large File Storage](https://docs.github.com/en/github/managing-large-files/installing-git-large-file-storage). Please follow the linked instructions to ensure you have it set up in your environment.
80+
81+
This repository contains [Git Submodules](https://blog.github.com/2016-02-01-working-with-submodules/). To add the submodules to the project, navigate to the repository root and type:
8082

8183
``` bash
8284
git submodule update --init --recursive

0 commit comments

Comments
 (0)