Skip to content

Commit

Permalink
[CI] Fix release script (#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
testableapple authored Dec 3, 2024
1 parent 2368714 commit 316a8c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ lane :release do |options|
File.write(artifacts_path, JSON.dump(artifacts))

# Set the framework version in SystemEnvironment+Version.swift
new_content = File.read(swift_environment_path).gsub!(previous_version_number, release_version).gsub!('-SNAPSHOT', '')
new_content = File.read(swift_environment_path).gsub!(previous_version_number, release_version).gsub('-SNAPSHOT', '')
File.open(swift_environment_path, 'w') { |f| f.puts(new_content) }

# Update sdk sizes
Expand Down

0 comments on commit 316a8c8

Please sign in to comment.