Skip to content

Commit

Permalink
Update Fastfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardopereira committed Oct 3, 2023
1 parent 25c51fe commit d5e9757
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 18 deletions.
5 changes: 2 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fastlane_version "1.99.0"
REQUIRED_XCODE_VERSION = "7.3"
fastlane_version "2.213.0"
REQUIRED_XCODE_VERSION = "15.0"
default_platform :ios

platform :ios do
Expand All @@ -19,6 +19,5 @@ platform :ios do
lane :release do |options|
version_bump_project bump_type: options[:bump]
version_bump_podspec bump_type: options[:bump]
clean_build_artifacts
end
end
39 changes: 24 additions & 15 deletions fastlane/README.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,48 @@
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 test

```sh
[bundle exec] fastlane ios test
```
fastlane ios test
```

Runs all the tests

### ios version_bump_project

```sh
[bundle exec] fastlane ios version_bump_project
```
fastlane ios version_bump_project
```

Increment the verion and build number

### ios release

```sh
[bundle exec] fastlane ios release
```
fastlane ios release
```

Prepare a new Release version

----

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).

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).

0 comments on commit d5e9757

Please sign in to comment.