Only upload to S3 the files that have changed
Opened this issue · 0 comments
mattjmcnaughton commented
Currently we upload the entire site directory to s3 both during the create
and update
actions. S3
will just overwrite any files that are already there. If possible, we should only upload files that have changed during update
. We could perform this selective upload either through checking the last modified times on the files, or checking hashes of files, or maybe something else.