Skip to content

Commit

Permalink
Add back cacheDerivedData option for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Supereg committed Jul 15, 2024
1 parent 32d1d14 commit 29a6c5c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/xcodebuild-or-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ on:
required: false
type: boolean
default: false
cacheDerivedData:
description: 'Cache the derived data folder for a build using xcodebuild [Deprecated].'
required: false
type: boolean
default: false
setupfirebaseemulator:
description: 'Setup the Firebase Emulator & automatically use it for the automated fastlane commands.'
required: false
Expand Down Expand Up @@ -174,6 +179,10 @@ jobs:
- name: Install xcbeautify
if: ${{ !env.selfhosted && inputs.scheme != '' }}
run: brew install xcbeautify
- name: Cache .derivedData folder (Deprecated)
if: ${{ inputs.cacheDerivedData }}
run: |
echo "::warning::Caching of the .derivedData folder was removed and is deprecated. Plase stop using this option."
- name: Cache Firebase Emulators
if: ${{ !env.selfhosted && inputs.setupfirebaseemulator }}
uses: actions/cache@v4
Expand Down

0 comments on commit 29a6c5c

Please sign in to comment.