diff --git a/.github/workflows/xcodebuild-or-fastlane.yml b/.github/workflows/xcodebuild-or-fastlane.yml index 54c688e..ea3211f 100644 --- a/.github/workflows/xcodebuild-or-fastlane.yml +++ b/.github/workflows/xcodebuild-or-fastlane.yml @@ -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.' @@ -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 }}