Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve deployment #241

Merged
merged 1 commit into from
Mar 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ begin

desc 'Release version'
task :release_version, :version do |task, args|
ensure_clean_git_status
checkout_and_pull_master
ensure_clean_git_status
update_version_in_podspec args.version
update_version_in_example_project args.version
Expand Down Expand Up @@ -312,6 +314,12 @@ def ensure_clean_git_status
end
end

def checkout_and_pull_master
title "Checkout and pull master"
sh "git checkout master"
sh "git pull"
end

def update_version_in_example_project(version)
title "Updating version in example project"
check_parameter(version)
Expand Down