openneo-blog/_bin/deploy.sh
Emi Matchu 74cea901d6 Use Prettier on the output we deploy
Just as like, an extra little step in case people decide to View Source
our blog. Doesn't really matter! But hey, feels polite all else equal!

(The main thing I noticed is the indentation, which is always a mess in
templating systems like Liquid with injecting content into layouts.)
2024-09-13 20:24:04 -07:00

5 lines
160 B
Bash
Executable file

#!/usr/bin/env bash
set -e
bundle exec jekyll build
npx prettier@3.3.3 -w --ignore-path= _site
sftp blog.openneo.net <<< 'put -r _site/* /srv/blog.openneo.net'