Skip to content

Commit

Permalink
build: Checkout LFS files in GitHub actions
Browse files Browse the repository at this point in the history
This fixes broken releases...
  • Loading branch information
jimmidyson committed Feb 8, 2022
1 parent 369318c commit 6326c4b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v2
with:
lfs: true

- name: Checkout LFS objects
run: git lfs checkout

- name: Install asdf and tools
uses: asdf-vm/actions/install@v1
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
lfs: true

- name: Checkout LFS objects
run: git lfs checkout

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
lfs: true

- name: Checkout LFS objects
run: git lfs checkout

- name: Install asdf and tools
uses: asdf-vm/actions/install@v1
Expand Down

0 comments on commit 6326c4b

Please sign in to comment.