DEV Community

Discussion on: How I automated publishing my personal blog posts to dev.to

Collapse
 
maxime1992 profile image
Maxime

Just to share something similar, I built a nodejs library which does all this for you. Here it is: dev.to/maxime1992/manage-your-dev-... and Beeman wrote another blog post to use github actions instead of Travis (but the point is, whichever CI provider you use it doesn't really matter)

To be mentioned: I do fetch all the articles to compare their hash with a local hash and you use git to do so, which is a good strategy, saving you from making the http calls to know if an article changed and needs to be updated 👍😃

Collapse
 
unseenwizzard profile image
Nico Riedmann

Awesome stuff 👍

I made the - obviously very bad and tedious 😅 - choice to do it myself using just basic command line tools mostly as an exercise.