-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: [IOAPPX-469] Remove unused vars and lanes for iOS Fastlane config…
…uration (#6638) ## Short description This PR removes the env vars `ITUNES_USER` and `HOCKEYAPP_ALPHA_TOKEN` and the related lane from the iOS fastlane configuration. ## List of changes proposed in this pull request - Remove both env vars which are not defined anywhere at the moment; - Remove the deprecated HokeyApp lane; ## How to test This can be tested by merging the PR before the next app release. --------- Co-authored-by: Fabio Bombardi <[email protected]>
- Loading branch information
1 parent
5e79c2c
commit ba2f462
Showing
3 changed files
with
43 additions
and
219 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,72 @@ | ||
fastlane documentation | ||
================ | ||
---- | ||
|
||
# Installation | ||
|
||
Make sure you have the latest version of the Xcode command line tools installed: | ||
|
||
``` | ||
```sh | ||
xcode-select --install | ||
``` | ||
|
||
Install _fastlane_ using | ||
``` | ||
[sudo] gem install fastlane -NV | ||
``` | ||
or alternatively using `brew install fastlane` | ||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||
|
||
# Available Actions | ||
|
||
## iOS | ||
|
||
### ios certificates | ||
|
||
```sh | ||
[bundle exec] fastlane ios certificates | ||
``` | ||
fastlane ios certificates | ||
``` | ||
|
||
Fetch certificates and provisioning profiles | ||
|
||
### ios test | ||
``` | ||
fastlane ios test | ||
``` | ||
Runs all the tests | ||
### ios register_new_device | ||
``` | ||
fastlane ios register_new_device | ||
``` | ||
Register new device | ||
### ios refresh_profiles | ||
``` | ||
fastlane ios refresh_profiles | ||
``` | ||
|
||
### ios test_build | ||
``` | ||
fastlane ios test_build | ||
```sh | ||
[bundle exec] fastlane ios test | ||
``` | ||
|
||
### ios do_adhoc_build | ||
``` | ||
fastlane ios do_adhoc_build | ||
``` | ||
Runs all the tests | ||
|
||
### ios do_testflight_build | ||
``` | ||
fastlane ios do_testflight_build | ||
``` | ||
|
||
### ios beta | ||
```sh | ||
[bundle exec] fastlane ios do_testflight_build | ||
``` | ||
fastlane ios beta | ||
``` | ||
Submit a new Beta Build to HockeyApp | ||
|
||
This will also make sure the profile is up to date | ||
### ios beta_testflight | ||
``` | ||
fastlane ios beta_testflight | ||
|
||
|
||
### ios beta_circleci_testflight | ||
|
||
```sh | ||
[bundle exec] fastlane ios beta_circleci_testflight | ||
``` | ||
|
||
Submit a new Beta Build to TestFlight | ||
### ios release | ||
|
||
### ios canary_ci_testflight | ||
|
||
```sh | ||
[bundle exec] fastlane ios canary_ci_testflight | ||
``` | ||
fastlane ios release | ||
|
||
Submit a new Canary Build to TestFlight | ||
|
||
### ios distribute_beta_testflight | ||
|
||
```sh | ||
[bundle exec] fastlane ios distribute_beta_testflight | ||
``` | ||
Deploy a new version to the App Store | ||
|
||
Distribute previously uploaded beta to TestFlight, using GA | ||
|
||
---- | ||
|
||
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. | ||
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). | ||
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools). | ||
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. | ||
|
||
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). | ||
|
||
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). |