Skip to content

Commit b6f084a

Browse files
committedJun 5, 2024
[Report] fixes build env variable and 404 for STACK_VERSION
1 parent 7173b83 commit b6f084a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎.github/workflows/report.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
ruby-version: 3.3
1717
env:
18-
STACK_VERSION: 8.14.0-SNAPSHOT
18+
STACK_VERSION: 8.15.0-SNAPSHOT
1919
- name: Build
2020
run: |
2121
cd report && bundle install

‎report/Rakefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ require 'erb'
22
require './download_artifacts'
33
require './reporter'
44

5-
desc "Generate report"
5+
desc 'Generate report'
66
task :report do
77
@reporter = Elastic::Reporter.new
88
template = ERB.new(File.read('./template.erb'), trim_mode: '-')
99
File.write('../apis_report.md', template.result(binding))
1010
end
1111

12-
desc "Download Elasticsearch Stack artifacts"
12+
desc 'Download Elasticsearch Stack artifacts'
1313
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')
1515
end
1616

17-
desc "Download Elasticsearch Serverless artifacts"
17+
desc 'Download Elasticsearch Serverless artifacts'
1818
task :download_spec do
1919
Elastic::download_es_specification
2020
end
2121

22-
desc "Download all artifacts"
22+
desc 'Download all artifacts'
2323
task :download_all do
2424
Rake::Task['download_json'].invoke
2525
Rake::Task['download_spec'].invoke

0 commit comments

Comments
 (0)