Skip to content

Commit

Permalink
fix: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolantean committed Apr 17, 2024
1 parent 2b4e40a commit 0c3a472
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 68 deletions.
49 changes: 19 additions & 30 deletions android/fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do

# Available Actions

### generate_docs

```sh
[bundle exec] fastlane generate_docs
```



### fetch_dependencies

```sh
Expand Down Expand Up @@ -101,6 +109,14 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do



### get_next_build_number

```sh
[bundle exec] fastlane get_next_build_number
```

**Get next Build Number**

----


Expand Down Expand Up @@ -161,43 +177,16 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
**Submit a new Beta Build to Firebase app distribution**

#### Envs
* **`firebase_app_id`**: Firebase app id.
* **`FIREBASE_SERVICE_ACCOUNT_FILE`**: The path to your Google service account json file.
* **`FIREBASE_TESTERS`**: The email addresses of the testers you want to invite.
You can specify the testers as a comma-separated list of email addresses: "ali@example.com, bri@example.com, cal@example.com"


### android deploy_firebase_dev

```sh
[bundle exec] fastlane android deploy_firebase_dev
```

**Deploy a new dev version to the Firebase App Distribution**

#### Envs
* **`FIREBASE_APP_ID_DEV`**: Dev Firebase app id.
* **`FIREBASE_APP_ID`**: Firebase app id.
* **`FIREBASE_SERVICE_ACCOUNT_FILE`**: The path to your Google service account json file.
* **`FIREBASE_TESTERS`**: The email addresses of the testers you want to invite.
You can specify the testers as a comma-separated list of email addresses: "ali@example.com, bri@example.com, cal@example.com"


### android deploy_firebase_prod

```sh
[bundle exec] fastlane android deploy_firebase_prod
```

**Deploy a new prod version to the Firebase App Distribution**

#### Envs
* **`FIREBASE_APP_ID_PROD`**: Production Firebase app id.


### android deploy_prod
### android publish_prod_google_play

```sh
[bundle exec] fastlane android deploy_prod
[bundle exec] fastlane android publish_prod_google_play
```

**Deploy a new version to the Google Play**
Expand Down
110 changes: 74 additions & 36 deletions fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,88 +1,126 @@
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

### generate_docs
```
fastlane generate_docs

```sh
[bundle exec] fastlane generate_docs
```



### fetch_dependencies

```sh
[bundle exec] fastlane fetch_dependencies
```
fastlane fetch_dependencies
```

**Fetch flutter dependencies**

### build_autogenerated_code

```sh
[bundle exec] fastlane build_autogenerated_code
```
fastlane build_autogenerated_code
```

**Generate flutter generated code**

### lint_format

```sh
[bundle exec] fastlane lint_format
```
fastlane lint_format
```

**Lint: Check code format**

### lint_check_language_sorting

```sh
[bundle exec] fastlane lint_check_language_sorting
```
fastlane lint_check_language_sorting
```

**Lint: Check code format**

### lint_analyze

```sh
[bundle exec] fastlane lint_analyze
```
fastlane lint_analyze
```

**Lint: Analyze code**

### lint_code_metrics

```sh
[bundle exec] fastlane lint_code_metrics
```
fastlane lint_code_metrics
```

**Lint: Code metrics**

### lints

```sh
[bundle exec] fastlane lints
```
fastlane lints
```

**Run linters**

### ensure_no_change_in_generated_code

```sh
[bundle exec] fastlane ensure_no_change_in_generated_code
```
fastlane ensure_no_change_in_generated_code
```

**Check generated code is fine**

### tests

```sh
[bundle exec] fastlane tests
```
fastlane tests
```

**Run tests**

### clean_up

```sh
[bundle exec] fastlane clean_up
```
fastlane clean_up
```

**Clean up project**

### build_flutter
```
fastlane build_flutter

```sh
[bundle exec] fastlane build_flutter
```



### get_next_build_number

```sh
[bundle exec] fastlane get_next_build_number
```
fastlane get_next_build_number
```

**Get next Build Number**

----

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).
20 changes: 18 additions & 2 deletions ios/fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do

# Available Actions

### generate_docs

```sh
[bundle exec] fastlane generate_docs
```



### fetch_dependencies

```sh
Expand Down Expand Up @@ -101,6 +109,14 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do



### get_next_build_number

```sh
[bundle exec] fastlane get_next_build_number
```

**Get next Build Number**

----


Expand Down Expand Up @@ -137,10 +153,10 @@ Build deploy version
* **`APPSTORE_CONNECT_API_KEY_ISSUER_ID`**: The connect api key issuer id
* **`APPSTORE_CONNECT_API_KEY_BASE_64_CONTENT`**: The api key base64 content

### ios publish_dev_firebase
### ios deploy_firebase_app_distribution

```sh
[bundle exec] fastlane ios publish_dev_firebase
[bundle exec] fastlane ios deploy_firebase_app_distribution
```

Push a new beta build to Firebase
Expand Down

0 comments on commit 0c3a472

Please sign in to comment.