Compare commits

..

3 commits

Author SHA1 Message Date
mrflos
4ad4084f28 Merge branch 'main' into prod
All checks were successful
deploy to prod / Build and deploy site (push) Successful in 46s
2024-09-26 11:35:58 +03:00
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