Add a deploy script
Our process for deployments can be automated. Simply, the process is:
git tag -s YYYYMMDDD-NNN
git push live --tags
This can be automated to a simple ./deploy
that auto-generates the tag label (including a day-based increment). This should cut down errors in the deployment process like tags without messages and pushing to the origin by mistake (both things I’ve experienced first hand).