Skip to content

Commit 1cf950d

Browse files
Merge pull request #1701 from nextcloud/fix/fastlane-release
Fix fastlane release tasks
2 parents b23f3c5 + abeaf1c commit 1cf950d

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

Gemfile.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ GEM
88
artifactory (3.0.15)
99
atomos (0.1.3)
1010
aws-eventstream (1.2.0)
11-
aws-partitions (1.703.0)
11+
aws-partitions (1.722.0)
1212
aws-sdk-core (3.170.0)
1313
aws-eventstream (~> 1, >= 1.0.2)
1414
aws-partitions (~> 1, >= 1.651.0)
1515
aws-sigv4 (~> 1.5)
1616
jmespath (~> 1, >= 1.6.1)
17-
aws-sdk-kms (1.62.0)
17+
aws-sdk-kms (1.63.0)
1818
aws-sdk-core (~> 3, >= 3.165.0)
1919
aws-sigv4 (~> 1.1)
20-
aws-sdk-s3 (1.119.0)
20+
aws-sdk-s3 (1.119.1)
2121
aws-sdk-core (~> 3, >= 3.165.0)
2222
aws-sdk-kms (~> 1)
2323
aws-sigv4 (~> 1.4)
@@ -36,7 +36,7 @@ GEM
3636
unf (>= 0.0.5, < 1.0.0)
3737
dotenv (2.8.1)
3838
emoji_regex (3.2.3)
39-
excon (0.98.0)
39+
excon (0.99.0)
4040
faraday (1.10.3)
4141
faraday-em_http (~> 1.0)
4242
faraday-em_synchrony (~> 1.0)
@@ -66,7 +66,7 @@ GEM
6666
faraday_middleware (1.2.0)
6767
faraday (~> 1.0)
6868
fastimage (2.2.6)
69-
fastlane (2.211.0)
69+
fastlane (2.212.1)
7070
CFPropertyList (>= 2.3, < 4.0.0)
7171
addressable (>= 2.8, < 3.0.0)
7272
artifactory (~> 3.0)
@@ -106,9 +106,9 @@ GEM
106106
xcpretty (~> 0.3.0)
107107
xcpretty-travis-formatter (>= 0.0.3)
108108
gh_inspector (1.1.3)
109-
google-apis-androidpublisher_v3 (0.33.0)
110-
google-apis-core (>= 0.9.1, < 2.a)
111-
google-apis-core (0.10.0)
109+
google-apis-androidpublisher_v3 (0.35.0)
110+
google-apis-core (>= 0.11.0, < 2.a)
111+
google-apis-core (0.11.0)
112112
addressable (~> 2.5, >= 2.5.1)
113113
googleauth (>= 0.16.2, < 2.a)
114114
httpclient (>= 2.8.1, < 3.a)
@@ -117,18 +117,18 @@ GEM
117117
retriable (>= 2.0, < 4.a)
118118
rexml
119119
webrick
120-
google-apis-iamcredentials_v1 (0.16.0)
121-
google-apis-core (>= 0.9.1, < 2.a)
122-
google-apis-playcustomapp_v1 (0.12.0)
123-
google-apis-core (>= 0.9.1, < 2.a)
120+
google-apis-iamcredentials_v1 (0.17.0)
121+
google-apis-core (>= 0.11.0, < 2.a)
122+
google-apis-playcustomapp_v1 (0.13.0)
123+
google-apis-core (>= 0.11.0, < 2.a)
124124
google-apis-storage_v1 (0.19.0)
125125
google-apis-core (>= 0.9.0, < 2.a)
126126
google-cloud-core (1.6.0)
127127
google-cloud-env (~> 1.0)
128128
google-cloud-errors (~> 1.0)
129129
google-cloud-env (1.6.0)
130130
faraday (>= 0.17.3, < 3.0)
131-
google-cloud-errors (1.3.0)
131+
google-cloud-errors (1.3.1)
132132
google-cloud-storage (1.44.0)
133133
addressable (~> 2.8)
134134
digest-crc (~> 0.4)
@@ -160,7 +160,7 @@ GEM
160160
naturally (2.2.1)
161161
optparse (0.1.1)
162162
os (1.1.4)
163-
plist (3.6.0)
163+
plist (3.7.0)
164164
public_suffix (5.0.1)
165165
rake (13.0.6)
166166
representable (3.2.0)

fastlane/Fastfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ desc "Build app bundle"
4848
tagName = getTagName(versionComponents)
4949
preReleaseChecks(versionInfo: versionInfo, tagName: tagName, type: versionComponents["type"], track: storeTrack)
5050
checkArtifactsExist()
51-
tag(tagName)
52-
uploadToPlayStore()
51+
tag(name: tagName)
52+
uploadToPlayStore(track: storeTrack)
5353
end
5454

5555
desc "Run tests"
@@ -96,8 +96,8 @@ desc "Build app bundle"
9696

9797

9898
desc "Create release tag"
99-
private_lane :tag do |versionInfo|
100-
tagName = versionInfo["versionName"]
99+
private_lane :tag do |options|
100+
tagName = options[:name]
101101
add_git_tag(
102102
tag: tagName,
103103
sign: true

0 commit comments

Comments
 (0)