5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 21:45:45 +00:00

Merge branch 'deploy-reindex' into panel.sutty.nl

This commit is contained in:
f 2022-07-26 14:15:07 -03:00
commit 016b5e7ef8

View file

@ -3,12 +3,31 @@
# Reindexa los artículos al terminar la compilación
class DeployReindex < Deploy
def deploy(output: true)
puts 'Reindex' if output
time_start
site.reset
site.indexed_posts.destroy_all
site.index_posts!
Site.transaction do
site.indexed_posts.destroy_all
site.index_posts!
end
time_stop
build_stats.create action: 'reindex',
log: 'Reindex',
seconds: time_spent_in_seconds,
bytes: size,
status: true
site.touch
end
def size
0
end
def limit
1
end