nixin-web/bin/push-to-prod.sh
Douze Baie 0c6cee19d5
All checks were successful
deploy to prod / Build and deploy site (push) Successful in 44s
updat push-to-prod.sh
2024-09-26 11:15:08 +02:00

6 lines
153 B
Bash
Executable file

#!/bin/bash
# push main to prod (which will trigger the deploy action)
git checkout prod
git merge --ff-only main
git push origin prod
git checkout main