Created
October 30, 2024 01:29
-
-
Save mathias5r/8f02236665b4b487a9d3518802e46819 to your computer and use it in GitHub Desktop.
Build app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - run: | |
| name: 'Build nonprod app locally' | |
| command: | | |
| if [ ! -d "ios/build/Build/Products/Release-iphonesimulator/MyApp.app" ]; then | |
| xcodebuild -workspace ios/MyApp.xcworkspace -scheme MyApp -configuration Release -sdk iphonesimulator -derivedDataPath ios/build | |
| else | |
| echo "Cached ios build already exists" | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment