add script to push main to prod (which will trigger the deploy action)

This commit is contained in:
Douze Bé 2024-09-26 10:29:47 +02:00
parent 1784841371
commit 0f05dac3c4

4
bin/push-to-prod.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
git checkout prod
git merge --ff-only main
git push origin prod