fastlane-plugin-stream_actions 0.3.29 → 0.3.30
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: a93952d6963df69d20fd5e400d692a1d65ec135dfc60a42b7d3be2b8eb75c551
|
|
4
|
+
data.tar.gz: 3561527ab1ed1c56cbbaf14d5cc00394f3dc51d9d611743bbda1021593aa725a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 979ba7c63874079c067a5f70df3a5b8311ca36630ad9a5873f5dd958c2ad1335ab579ab22e4d21f2adb9c68508149e9f5ce2aa340cb869fd7896b49a7f5d059e
|
|
7
|
+
data.tar.gz: 6b85b215b1b167e150b2354ffc5a41cb397099154c849258168d847d9c25b97426de10b5a3c07f42596a5464bb30a321a0237885728793d27cddda28ea42687c
|
|
@@ -12,7 +12,7 @@ module Fastlane
|
|
|
12
12
|
ensure_everything_is_set_up(params)
|
|
13
13
|
ensure_release_tag_is_new(version_number)
|
|
14
14
|
|
|
15
|
-
changes = params[:
|
|
15
|
+
changes = params[:changelog] || other_action.read_changelog(version: version_number, changelog_path: params[:changelog_path])
|
|
16
16
|
|
|
17
17
|
release_details = other_action.set_github_release(
|
|
18
18
|
repository_name: params[:github_repo],
|
|
@@ -86,13 +86,6 @@ module Fastlane
|
|
|
86
86
|
is_string: false,
|
|
87
87
|
optional: true
|
|
88
88
|
),
|
|
89
|
-
FastlaneCore::ConfigItem.new(
|
|
90
|
-
key: :skip_changelog,
|
|
91
|
-
description: 'Skip changelog update',
|
|
92
|
-
is_string: false,
|
|
93
|
-
optional: true,
|
|
94
|
-
default_value: false
|
|
95
|
-
),
|
|
96
89
|
FastlaneCore::ConfigItem.new(
|
|
97
90
|
key: :changelog_path,
|
|
98
91
|
env_name: 'FL_CHANGELOG_PATH',
|
|
@@ -100,6 +93,12 @@ module Fastlane
|
|
|
100
93
|
is_string: true,
|
|
101
94
|
default_value: './CHANGELOG.md'
|
|
102
95
|
),
|
|
96
|
+
FastlaneCore::ConfigItem.new(
|
|
97
|
+
key: :changelog,
|
|
98
|
+
description: 'Static changelog',
|
|
99
|
+
is_string: true,
|
|
100
|
+
optional: true
|
|
101
|
+
),
|
|
103
102
|
FastlaneCore::ConfigItem.new(
|
|
104
103
|
key: :upload_assets,
|
|
105
104
|
description: 'Path to assets to be uploaded with the release',
|