fastlane-plugin-auth0_shipper 0.3.0 → 0.3.1
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: cb9f5bfe7bd27508e0e9cc349dc2d788e1fa1817
|
4
|
+
data.tar.gz: fa16b367f1995e302a4924a520590d7d61cafd5f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93c50baea5792ef2a973ab2aea6a4f76cdcaec639480ba3119c38738168e49a97c38ce34e78fb2cbaffa5f59b2f1b32c1b24b87a58f4f14e0d380239d2834d2e
|
7
|
+
data.tar.gz: d645f6471b9c0d8683869cf0d553b3bf7c6c918fc2d98f4be360c7ef88fb00665c58f8d60669e3688c4375485af7c2f3c9e8738ecce5205b517454c5f423d458
|
@@ -2,10 +2,10 @@ module Fastlane
|
|
2
2
|
module Actions
|
3
3
|
class PerformReleaseAction < Action
|
4
4
|
def self.run(params)
|
5
|
-
version = Helper::Auth0ShipperHelper.
|
5
|
+
version = Helper::Auth0ShipperHelper.ios_current_version(params[:target])
|
6
6
|
UI.header "Performing release for version #{version} 🏗"
|
7
7
|
Actions::AddGitTagAction.run(tag: version.to_s)
|
8
|
-
Actions::
|
8
|
+
Actions::PushGitTagsAction.run({remote: 'origin', tag: version.to_s})
|
9
9
|
end
|
10
10
|
|
11
11
|
def self.description
|
@@ -10,7 +10,8 @@ module Fastlane
|
|
10
10
|
api_token: params[:github_token],
|
11
11
|
name: tag.to_s,
|
12
12
|
tag_name: tag.to_s,
|
13
|
-
description: changelog_entry
|
13
|
+
description: changelog_entry,
|
14
|
+
server_url: 'https://api.github.com'
|
14
15
|
}) unless params[:github_token].nil?
|
15
16
|
Actions::PodLibLintAction.run({})
|
16
17
|
Actions::PodPushAction.run({})
|