Skip to content

Commit

Permalink
feat: enable LFS support in GitHub Actions workflow
Browse files Browse the repository at this point in the history
- Added LFS support by enabling LFS in the checkout action.
- Included a step to fetch all LFS objects to ensure required files are available.
  • Loading branch information
calvinhp committed Jul 30, 2024
1 parent 050320f commit a45cc9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true
- name: Fetch LFS objects
run: git lfs fetch --all
- name: Install Dependencies
run: |
export DEBIAN_FRONTEND=noninteractive \
Expand Down

0 comments on commit a45cc9f

Please sign in to comment.