Skip to content

Commit d5e9757

Browse files
Update Fastfile.
1 parent 25c51fe commit d5e9757

File tree

2 files changed

+26
-18
lines changed

2 files changed

+26
-18
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
fastlane_version "1.99.0"
2-
REQUIRED_XCODE_VERSION = "7.3"
1+
fastlane_version "2.213.0"
2+
REQUIRED_XCODE_VERSION = "15.0"
33
default_platform :ios
44

55
platform :ios do
@@ -19,6 +19,5 @@ platform :ios do
1919
lane :release do |options|
2020
version_bump_project bump_type: options[:bump]
2121
version_bump_podspec bump_type: options[:bump]
22-
clean_build_artifacts
2322
end
2423
end

fastlane/README.md

Lines changed: 24 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,48 @@
11
fastlane documentation
2-
================
2+
----
3+
34
# Installation
45

56
Make sure you have the latest version of the Xcode command line tools installed:
67

7-
```
8+
```sh
89
xcode-select --install
910
```
1011

11-
Install _fastlane_ using
12-
```
13-
[sudo] gem install fastlane -NV
14-
```
15-
or alternatively using `brew install fastlane`
12+
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
1613

1714
# Available Actions
15+
1816
## iOS
17+
1918
### ios test
19+
20+
```sh
21+
[bundle exec] fastlane ios test
2022
```
21-
fastlane ios test
22-
```
23+
2324
Runs all the tests
25+
2426
### ios version_bump_project
27+
28+
```sh
29+
[bundle exec] fastlane ios version_bump_project
2530
```
26-
fastlane ios version_bump_project
27-
```
31+
2832
Increment the verion and build number
33+
2934
### ios release
35+
36+
```sh
37+
[bundle exec] fastlane ios release
3038
```
31-
fastlane ios release
32-
```
39+
3340
Prepare a new Release version
3441

3542
----
3643

3744
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
38-
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
39-
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
45+
46+
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
47+
48+
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 commit comments

Comments
 (0)