Compare commits

..

2 commits

Author SHA1 Message Date
831618a464 add comment in push-to-prod.sh script
Some checks are pending
deploy to prod / Build and deploy site (push) Waiting to run
2024-09-26 10:31:24 +02:00
0f05dac3c4 add script to push main to prod (which will trigger the deploy action) 2024-09-26 10:29:47 +02:00

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

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