Skip to content

Commit c5c36b1

Browse files
committed
Attempt#6 - Fixing Release Workflow Error
1 parent 475f2e3 commit c5c36b1

File tree

4 files changed

+49
-11
lines changed

4 files changed

+49
-11
lines changed

Gemfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
11
source "https://rubygems.org"
22

3-
gem "fastlane"
4-
5-
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
6-
eval_gemfile(plugins_path) if File.exist?(plugins_path)
3+
gem "fastlane"

Gemfile.lock

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ GEM
109109
xcodeproj (>= 1.13.0, < 2.0.0)
110110
xcpretty (~> 0.3.0)
111111
xcpretty-travis-formatter (>= 0.0.3, < 2.0.0)
112-
fastlane-plugin-increment_version_code (0.4.3)
113112
gh_inspector (1.1.3)
114113
google-apis-androidpublisher_v3 (0.54.0)
115114
google-apis-core (>= 0.11.0, < 2.a)
@@ -215,7 +214,6 @@ PLATFORMS
215214

216215
DEPENDENCIES
217216
fastlane
218-
fastlane-plugin-increment_version_code
219217

220218
BUNDLED WITH
221219
2.5.18

fastlane/PluginFile

Lines changed: 0 additions & 5 deletions
This file was deleted.

fastlane/README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
fastlane documentation
2+
----
3+
4+
# Installation
5+
6+
Make sure you have the latest version of the Xcode command line tools installed:
7+
8+
```sh
9+
xcode-select --install
10+
```
11+
12+
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
13+
14+
# Available Actions
15+
16+
## Android
17+
18+
### android deploy_internal
19+
20+
```sh
21+
[bundle exec] fastlane android deploy_internal
22+
```
23+
24+
Deploy internal tracks to Google Play
25+
26+
### android promote_to_beta
27+
28+
```sh
29+
[bundle exec] fastlane android promote_to_beta
30+
```
31+
32+
Promote internal tracks to beta on Google Play
33+
34+
### android promote_to_production
35+
36+
```sh
37+
[bundle exec] fastlane android promote_to_production
38+
```
39+
40+
Promote beta tracks to production on Google Play
41+
42+
----
43+
44+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
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)