Skip to content

Commit

Permalink
Revert "general: remove lfs steps from build workflow"
Browse files Browse the repository at this point in the history
This reverts commit bd4e350 [formerly 83a5102].

Former-commit-id: bbc0995
  • Loading branch information
C0kkie committed Nov 2, 2021
1 parent 4edd35e commit 0da1485
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,19 @@ jobs:
with:
submodules: recursive

- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id

- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1

- name: Git LFS Pull
run: git lfs pull

- name: Extract version
id: version
shell: bash
Expand Down Expand Up @@ -55,6 +68,19 @@ jobs:
with:
submodules: recursive

- name: Create LFS file list
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-assets-id

- name: Restore LFS cache
uses: actions/cache@v2
id: lfs-cache
with:
path: .git/lfs
key: ${{ runner.os }}-lfs-${{ hashFiles('.lfs-assets-id') }}-v1

- name: Git LFS Pull
run: git lfs pull

- name: Extract version
id: version
shell: bash
Expand Down

0 comments on commit 0da1485

Please sign in to comment.