nixin-web/bin/push-to-prod.sh

6 lines
135 B
Bash
Raw Normal View History

#!/bin/bash
2024-09-26 08:31:24 +00:00
# push main to prod (which will trigger the deploy action)
git checkout prod
git merge --ff-only main
git push origin prod