fastlane-plugin-auth0_shipper 0.3.0 → 0.3.1

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
  SHA1:
3
- metadata.gz: e71dade066673d285625f378d3a6e8bd2308341a
4
- data.tar.gz: 4ccf82a644dc762c545005e308b08ad0a2d7d72c
3
+ metadata.gz: cb9f5bfe7bd27508e0e9cc349dc2d788e1fa1817
4
+ data.tar.gz: fa16b367f1995e302a4924a520590d7d61cafd5f
5
5
  SHA512:
6
- metadata.gz: 231dd9f55935438f262ed20709c14f2d5290edebee4258a36f901c6ec5a7a7c8fcbac92a4122b3f94fc3f6b090b61c7ba14613d33227d945dae38e71d17c64bb
7
- data.tar.gz: f31aa11d8d117961e2c3758cc4df195d3ed62380d87597b0806958c1bf11b94a864a48fb901a46a0473c9613ed02e918a0cfc6b36e6702ec1a0fd4a4dcad1b6e
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.resolve_current_version(params[:target])
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::PushToGitRemoteAction.run({tags: true})
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({})
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Auth0Shipper
3
- VERSION = "0.3.0"
3
+ VERSION = "0.3.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-auth0_shipper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hernan Zalazar