-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
The commit improves Fastlane Fastifle with a new internal method which will publish a comment on issues related to the current alpha build. Thus when an alpha build is done and its TestFlight upload processed, a comment will be publishe for each related issue. Documentation has been also improved with details about the type of GitHub personal access token to define as secret. The internal CI/CD software solution has been used for tests. This commit also replaces some Shell commands for GitHub REST API HTTP request with some Ruby standard API. Closes #56 Tested-by: Pierre-Yves Lapersonne <[email protected]> Signed-off-by: Pierre-Yves Lapersonne <[email protected]>
- Loading branch information
Showing
8 changed files
with
245 additions
and
51 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -0,0 +1,80 @@ | ||
fastlane documentation | ||
---- | ||
|
||
# Installation | ||
|
||
Make sure you have the latest version of the Xcode command line tools installed: | ||
|
||
```sh | ||
xcode-select --install | ||
``` | ||
|
||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||
|
||
# Available Actions | ||
|
||
## iOS | ||
|
||
### ios update_build_number | ||
|
||
```sh | ||
[bundle exec] fastlane ios update_build_number | ||
``` | ||
|
||
UPDATE BUILD NUMBER WITH TIMESTAMP | ||
|
||
### ios test | ||
|
||
```sh | ||
[bundle exec] fastlane ios test | ||
``` | ||
|
||
RUN TESTS BY TRIGGERING THE TESTS PLANS OF THE PROJECT | ||
|
||
### ios prepare_release | ||
|
||
```sh | ||
[bundle exec] fastlane ios prepare_release | ||
``` | ||
|
||
READ AND SET NEXT RELEASE NOTE IN CHANGELOG | ||
|
||
### ios buildDebugApp | ||
|
||
```sh | ||
[bundle exec] fastlane ios buildDebugApp | ||
``` | ||
|
||
BUILD DEBUG APP | ||
|
||
### ios alpha | ||
|
||
```sh | ||
[bundle exec] fastlane ios alpha | ||
``` | ||
|
||
BUILD & UPLOAD TO TESTFLIGHT ALPHA APP | ||
|
||
### ios beta | ||
|
||
```sh | ||
[bundle exec] fastlane ios beta | ||
``` | ||
|
||
BUILD & UPLOAD TO TESTFLIGHT BETA APP | ||
|
||
### ios prod | ||
|
||
```sh | ||
[bundle exec] fastlane ios prod | ||
``` | ||
|
||
BUILD & UPLOAD TO TESTFLIGHT (if set in options: upload) PROD APP | ||
|
||
---- | ||
|
||
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). |
Oops, something went wrong.