I am using to blowdown to build and update a webpage regularly. It usually works great.
However, I am encountering a strange issue: If I edit my Rmd-files and then build the site over again, the html-versions of the edited files are sometimes not moved into the public-folder, and these pages are not linked from my index-page. If I wait 5-10 hours and try again, they will be rendered as normal, and everything is fine. I am wondering if there is some issue with time-stamps or some cache that I could somehow avoid?
I build the page with this line:
blogdown::build_site(local = FALSE, run_hugo = TRUE, build_rmd = TRUE)
If I build the page with local = TRUE, or use serve_site(), everything works fine, even when build_site(local = FALSE)does not.
Any help would be appreciated!