1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

fastlane: add page (#5034)

This commit is contained in:
Axel Navarro 2020-12-29 08:57:05 -03:00 committed by GitHub
parent 5430739f1d
commit 2ee8662bd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
pages/common/fastlane.md Normal file
View file

@ -0,0 +1,20 @@
# fastlane
> Build and release mobile applications from the command-line.
> More information: <https://docs.fastlane.tools/actions/>.
- Build and sign the iOS application in the current directory:
`fastlane run build_app`
- Run `pod install` for the project in the current directory:
`fastlane run cocoapods`
- Delete the derived data from Xcode:
`fastlane run clear_derived_data`
- Remove the cache for pods:
`fastlane run clean_cocoapods_cache`