fastlane-plugin-apprepo 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 921cf0d7b4171198c0ce532aea014f875a7e5519
|
4
|
+
data.tar.gz: eea4c894bb932d5a3582c79701311fa87d3158e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 479ec3bfe144d8a515ca537293dc0113d3e6a65bd09b9127e80236b8bf3da8df20dcaf9fd65688b58fda987fc862be06a70c1bd3ed0c62d284db49dd5ba80e1a
|
7
|
+
data.tar.gz: 1ae0065f76b8d92aacd19324f8e2e7e8c1b73ec1147a39811f1decf6697ce8fde28fde595cafaa9cd7dbbe543a2df19050d365fc6a1fa0c9531e49246cb27223
|
@@ -137,8 +137,11 @@ module Fastlane
|
|
137
137
|
puts JSON.pretty_generate(manifest) unless manifest.nil?
|
138
138
|
bump_ipa(sftp, local_ipa_path, appcode)
|
139
139
|
remote_ipa_path = get_remote_ipa_path(local_ipa_path, appcode)
|
140
|
+
FastlaneCore::UI.command_output('Uploading IPA...')
|
140
141
|
upload_ipa(sftp, local_ipa_path, remote_ipa_path)
|
142
|
+
FastlaneCore::UI.command_output('Uploading manifest...')
|
141
143
|
upload_manifest(sftp, manifest_path, remote_manifest_path(appcode))
|
144
|
+
FastlaneCore::UI.command_output('Verification...')
|
142
145
|
# Lists the entries in a directory for verification
|
143
146
|
sftp.dir.foreach(path) do |entry|
|
144
147
|
FastlaneCore::UI.message(entry.longname)
|
@@ -137,8 +137,11 @@ module Fastlane
|
|
137
137
|
puts JSON.pretty_generate(manifest) unless manifest.nil?
|
138
138
|
bump_ipa(sftp, local_ipa_path, appcode)
|
139
139
|
remote_ipa_path = get_remote_ipa_path(local_ipa_path, appcode)
|
140
|
+
FastlaneCore::UI.command_output('Uploading IPA...')
|
140
141
|
upload_ipa(sftp, local_ipa_path, remote_ipa_path)
|
142
|
+
FastlaneCore::UI.command_output('Uploading manifest...')
|
141
143
|
upload_manifest(sftp, manifest_path, remote_manifest_path(appcode))
|
144
|
+
FastlaneCore::UI.command_output('Verification...')
|
142
145
|
# Lists the entries in a directory for verification
|
143
146
|
sftp.dir.foreach(path) do |entry|
|
144
147
|
FastlaneCore::UI.message(entry.longname)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module Fastlane
|
2
2
|
# Static configuration values
|
3
3
|
module Apprepo
|
4
|
-
VERSION = "0.5.
|
4
|
+
VERSION = "0.5.2".freeze
|
5
5
|
SUMMARY = 'Fastlane plugin for distributing artifacts with SFTP upload'.freeze
|
6
6
|
DESCRIPTION = 'Fastlane plugin SFTP/AppRepo uploader'.freeze
|
7
7
|
end
|