Skip to content

Commit 1e70d09

Browse files
authored
fix(ci): update unstable release file path in CI scripts (#3737)
1 parent 108afe9 commit 1e70d09

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

fastlane/Fastfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ platform :ios do
4646
desc "Increment versions"
4747
private_lane :increment_versions do |options|
4848
version = options[:version].to_s
49-
set_key_value(file: "AmplifyPlugins/Core/AWSPluginsCore/ServiceConfiguration/AmplifyAWSServiceConfiguration.swift", key: "amplifyVersion", value: version)
49+
configuration_file_path = "AmplifyPlugins/Core/AmplifyCredentials/AmplifyAWSServiceConfiguration.swift"
50+
set_key_value(file: configuration_file_path, key: "amplifyVersion", value: version)
5051
end
5152

5253
desc "Commit and push"
@@ -77,7 +78,7 @@ platform :ios do
7778
version = options[:version].to_s
7879
changelog = options[:changelog]
7980
tag = "#{version}"
80-
81+
8182
sh('bundle', 'exec', 'swift', 'package', 'update')
8283

8384
write_changelog(changelog: changelog, path: 'CHANGELOG.md')

0 commit comments

Comments
 (0)