diff --git a/app/models/communication/website/imported/post.rb b/app/models/communication/website/imported/post.rb
index b743fad873b8078f0e38503dc6225cfd6b573161..37787a1e6d95e514b798850db27064d2dfaa46c2 100644
--- a/app/models/communication/website/imported/post.rb
+++ b/app/models/communication/website/imported/post.rb
@@ -107,8 +107,8 @@ class Communication::Website::Imported::Post < ApplicationRecord
       http.use_ssl = true
       http.verify_mode = OpenSSL::SSL::VERIFY_NONE
       request = Net::HTTP::Get.new(uri.request_uri)
-      response = http.request(request)
       begin
+        response = http.request(request)
         post.featured_image.attach(io: StringIO.new(response.body), filename: filename, content_type: 'image/jpeg')
       rescue
       end
diff --git a/app/models/communication/website/imported/website.rb b/app/models/communication/website/imported/website.rb
index dff61d59b22c38e94174d009bb8f55767a74fc44..6765db2e49018fa64d0bfbf61f9ab91cd8929ea4 100644
--- a/app/models/communication/website/imported/website.rb
+++ b/app/models/communication/website/imported/website.rb
@@ -79,10 +79,18 @@ class Communication::Website::Imported::Website < ApplicationRecord
   end
 
   def sync_posts
+    Communication::Website::Post.skip_callback(:save, :after, :publish_to_github)
+    github = Github.with_site website
     wordpress.posts.each do |data|
       post = posts.where(university: university, identifier: data['id']).first_or_initialize
       post.data = data
       post.save
+      generated_post = post.post
+      github.add_to_batch path: generated_post.github_path_generated,
+                          previous_path: generated_post.github_path,
+                          data: generated_post.to_jekyll
     end
+    github.commit_batch '[Post] Batch update from import'
+    Communication::Website::Post.set_callback(:save, :after, :publish_to_github)
   end
 end