Skip to content

Commit 2cfcdb4

Browse files
committed
[CI] Renames unified_release tasks to automation
1 parent 901ad8f commit 2cfcdb4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/make.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ docker run \
132132
--volume "${repo}:/usr/src/app" \
133133
--rm \
134134
"${product}" \
135-
bundle exec rake unified_release:${TASK}["${args_string}"]
135+
bundle exec rake automation:${TASK}["${args_string}"]
136136

137137
# ------------------------------------------------------- #
138138
# Post Command tasks & checks

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ RELEASE_TOGETHER = [
7070
CERT_DIR = ENV['CERT_DIR'] || '.ci/certs'
7171

7272
# Import build task after setting constants:
73-
import 'rake_tasks/unified_release_tasks.rake'
73+
import 'rake_tasks/automation.rake'
7474

7575
# TODO: Figure out "bundle exec or not"
7676
# subprojects.each { |project| $LOAD_PATH.unshift CURRENT_PATH.join(project, "lib").to_s }

rake_tasks/unified_release_tasks.rake rake_tasks/automation.rake

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
require 'fileutils'
1919
require_relative '../elasticsearch/lib/elasticsearch/version'
2020

21-
namespace :unified_release do
21+
namespace :automation do
2222
desc 'Build gem releases and snapshots'
2323
task :build_gems do |_, args|
2424
output_dir = File.expand_path(__dir__ + '/../build')
@@ -53,7 +53,7 @@ namespace :unified_release do
5353
5454
Example:
5555
56-
$ rake unified_release:bump[42.0.0]
56+
$ rake automation:bump[42.0.0]
5757
DESC
5858
task :bump, :version do |_, args|
5959
abort('[!] Required argument [version] missing') unless (version = args[:version])
@@ -96,7 +96,7 @@ namespace :unified_release do
9696
9797
Example:
9898
99-
$ rake unified_release:bump_matrix[42.0.0]
99+
$ rake automation:bump_matrix[42.0.0]
100100
DESC
101101
task :bumpmatrix, :version do |_, args|
102102
abort('[!] Required argument [version] missing') unless (version = args[:version])

0 commit comments

Comments
 (0)