5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-16 06:21:41 +00:00

Merge branch 'issue-13612' into 'rails'
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

fix: indexar posts luego de crear el sitio #13610

See merge request sutty/sutty!192
This commit is contained in:
fauno 2023-10-06 13:21:46 +00:00
commit 344fe3707f
3 changed files with 7 additions and 3 deletions

View file

@ -130,7 +130,12 @@ class DeployLocal < Deploy
end end
def bundle(output: false) def bundle(output: false)
run %(bundle install --deployment --no-cache --path="#{gems_dir}" --clean --without test development), output: output run %(bundle config set --local clean 'true'), output: output
run %(bundle config set --local deployment 'true'), output: output
run %(bundle config set --local path '#{gems_dir}'), output: output
run %(bundle config set --local without 'test development'), output: output
run %(bundle config set --local cache_all 'false'), output: output
run %(bundle install), output: output
end end
def jekyll_build(output: false) def jekyll_build(output: false)

View file

@ -8,8 +8,6 @@ class Site
extend ActiveSupport::Concern extend ActiveSupport::Concern
included do included do
# TODO: Debería ser un Job?
after_create :index_posts!
has_many :indexed_posts, dependent: :destroy has_many :indexed_posts, dependent: :destroy
def index_posts! def index_posts!

View file

@ -33,6 +33,7 @@ SiteService = Struct.new(:site, :usuarie, :params, keyword_init: true) do
add_licencias && add_licencias &&
add_code_of_conduct && add_code_of_conduct &&
add_privacy_policy && add_privacy_policy &&
site.index_posts! &&
deploy deploy
end end