Skip to content

Commit

Permalink
Add LFS support
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Aug 30, 2024
1 parent 63f410c commit 6bc52ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/xcodebuild-or-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,11 @@ on:
description: "Flag indicating if submodules should be automatically checked out."
required: false
type: boolean
checkout_lfs:
description: "Flag indicating if git lfs should be used when running the check out step."
required: false
type: boolean
default: false
secrets:
BUILD_CERTIFICATE_BASE64:
description: 'The Base64 version of the Apple signing certificate to build your iOS application.'
Expand Down Expand Up @@ -167,6 +172,7 @@ jobs:
# This is GitHubs way of implementing ternary expressions (see https://docs.github.com/en/actions/learn-github-actions/expressions)
token: ${{ secrets.CHECKOUT_TOKEN != '' && secrets.CHECKOUT_TOKEN || github.token }}
submodules: ${{ inputs.checkout_submodules }}
lfs: ${{ inputs.checkout_lfs }}
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ inputs.xcodeversion }}
Expand Down

0 comments on commit 6bc52ca

Please sign in to comment.