fastlane-plugin-sq_ci_tools 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed5fd31b9dabdbc50395d9461d40be9f2489f5f6b8b42a4b31484874bcca5741
|
4
|
+
data.tar.gz: da9bf5552fe2549cbefa086b6016a7bbd243b64c48e9cfad247b9827523af36e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b119cb6c76bc392a7ef849c4bbc33dc270056fb7846192b8c3b3b3ba6780b6c3ab095926dc09810a314727233ccdaab62886bdc12ffaa494a7fc75239bb803b
|
7
|
+
data.tar.gz: a8744dec5602e339e7c759748608795c53dcb9274a6152c61f330012608dc3f13a3cc8152767831b895a053778bfc15e532d96971fee4af733ef0e783507b145
|
@@ -5,7 +5,7 @@ module Fastlane
|
|
5
5
|
module Actions
|
6
6
|
class SqCiToolsAddVersionTagAction < Action
|
7
7
|
def self.run(params)
|
8
|
-
app_version_string = other_action.sq_ci_tools_get_app_version_string
|
8
|
+
app_version_string = params[:app_version] || other_action.sq_ci_tools_get_app_version_string
|
9
9
|
|
10
10
|
other_action.add_git_tag(
|
11
11
|
tag: "#{params[:tags_folder]}/#{app_version_string}"
|
@@ -31,6 +31,12 @@ module Fastlane
|
|
31
31
|
description: 'Name of folder of tag in repo',
|
32
32
|
optional: false,
|
33
33
|
type: String
|
34
|
+
),
|
35
|
+
FastlaneCore::ConfigItem.new(
|
36
|
+
key: :app_version,
|
37
|
+
description: 'Version of the application',
|
38
|
+
optional: true,
|
39
|
+
type: String
|
34
40
|
)
|
35
41
|
]
|
36
42
|
end
|
@@ -5,7 +5,7 @@ require 'aws-sdk-core'
|
|
5
5
|
|
6
6
|
module Fastlane
|
7
7
|
module Actions
|
8
|
-
class
|
8
|
+
class SqCiToolsUploadFileToS3Action < Action
|
9
9
|
def self.run(params)
|
10
10
|
access_key = params[:s3_access_key_id]
|
11
11
|
key_secret = params[:s3_secret_access_key]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-sq_ci_tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Semen Kologrivov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry
|