File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 15
15
with :
16
16
ruby-version : 3.3
17
17
env :
18
- STACK_VERSION : 8.14 .0-SNAPSHOT
18
+ STACK_VERSION : 8.15 .0-SNAPSHOT
19
19
- name : Build
20
20
run : |
21
21
cd report && bundle install
Original file line number Diff line number Diff line change @@ -2,24 +2,24 @@ require 'erb'
2
2
require './download_artifacts'
3
3
require './reporter'
4
4
5
- desc " Generate report"
5
+ desc ' Generate report'
6
6
task :report do
7
7
@reporter = Elastic ::Reporter . new
8
8
template = ERB . new ( File . read ( './template.erb' ) , trim_mode : '-' )
9
9
File . write ( '../apis_report.md' , template . result ( binding ) )
10
10
end
11
11
12
- desc " Download Elasticsearch Stack artifacts"
12
+ desc ' Download Elasticsearch Stack artifacts'
13
13
task :download_json do
14
- Elastic ::download_json_spec ( ENV [ 'STACK_VERSION' ] || '8.13 .0-SNAPSHOT' )
14
+ Elastic ::download_json_spec ( ENV [ 'STACK_VERSION' ] || '8.14 .0-SNAPSHOT' )
15
15
end
16
16
17
- desc " Download Elasticsearch Serverless artifacts"
17
+ desc ' Download Elasticsearch Serverless artifacts'
18
18
task :download_spec do
19
19
Elastic ::download_es_specification
20
20
end
21
21
22
- desc " Download all artifacts"
22
+ desc ' Download all artifacts'
23
23
task :download_all do
24
24
Rake ::Task [ 'download_json' ] . invoke
25
25
Rake ::Task [ 'download_spec' ] . invoke
You can’t perform that action at this time.
0 commit comments