Skip to content

Commit

Permalink
Fix docs-preview pipeline
Browse files Browse the repository at this point in the history
The `bundle install` was removed in 5dbaed1 because I had assumed that using the pre-built image would be enough.

However, the builds started failing due to this change:
https://buildkite.com/rails/docs-preview/builds/1940

Co-authored-by: Hartley McGuire <skipkayhil@gmail.com>
  • Loading branch information
zzak and skipkayhil committed Jun 27, 2024
1 parent e214baa commit de66b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipelines/docs-preview/pipeline.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
command do
label "build", emoji: :rails
key "build"
command "bundle exec rake preview_docs"
command "bundle install && bundle exec rake preview_docs"
timeout_in_minutes 15
plugin :docker, {
image: build_context.image_name_for("br-main", prefix: nil),
Expand Down

0 comments on commit de66b70

Please sign in to comment.