mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 13:37:11 +00:00
Release script fixes: prevent sed from incorrectly matching other versions, correctly increment the path version past .9 which would previously increment the minor
This commit is contained in:
parent
c5c8715e07
commit
612a28b7e2
1
Gemfile
1
Gemfile
@ -7,6 +7,7 @@ source "https://rubygems.org"
|
||||
gem 'fastlane'
|
||||
gem "xcode-install"
|
||||
gem 'slather'
|
||||
gem 'semantic'
|
||||
|
||||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
||||
eval_gemfile('fastlane/Pluginfile') if File.exist?(plugins_path)
|
||||
|
@ -210,6 +210,7 @@ GEM
|
||||
ruby2_keywords (0.0.5)
|
||||
rubyzip (2.3.2)
|
||||
security (0.1.3)
|
||||
semantic (1.6.1)
|
||||
signet (0.17.0)
|
||||
addressable (~> 2.8)
|
||||
faraday (>= 0.17.5, < 3.a)
|
||||
@ -266,6 +267,7 @@ DEPENDENCIES
|
||||
fastlane-plugin-sentry
|
||||
fastlane-plugin-xcconfig
|
||||
fastlane-plugin-xcodegen
|
||||
semantic
|
||||
slather
|
||||
xcode-install
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
require 'yaml'
|
||||
require 'semantic'
|
||||
require_relative 'changelog'
|
||||
|
||||
before_all do
|
||||
@ -256,11 +257,14 @@ lane :prepare_next_release do
|
||||
|
||||
data = YAML.load_file target_file_path
|
||||
current_version = data["settings"]["MARKETING_VERSION"]
|
||||
new_version = current_version.next
|
||||
|
||||
version = Semantic::Version.new(current_version)
|
||||
|
||||
new_version = version.increment!(:patch)
|
||||
|
||||
# Bump the patch version. The empty string after -i is so that sed doesn't
|
||||
# create a backup file on macOS
|
||||
sh("sed -i '' 's/#{current_version}/#{new_version}/g' #{target_file_path}")
|
||||
sh("sed -i '' 's/MARKETING_VERSION: #{current_version}/MARKETING_VERSION: #{new_version.to_string}/g' #{target_file_path}")
|
||||
|
||||
xcodegen(spec: "project.yml")
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user