The Simplest Deploy

As is evident from my last post, I like simple, objective stuff (even though is not perfect, since it doesn't work on firefox).

This blog uses just one handy script to deploy to production. Thanks to how GitHub pages](https://pages.github.com/) operate, I can just build, copy to the GitHub pages repo, commit and push. Done! It's something like this:

gatsby build 
cp -r -f public/* <repo path>
cd <repo path>
git add . && git commit -am "publish" && git push

And that's it! Of course, I'll do some fancy Continuous Integration with GitHub actions and stuff, but all in due time.