Closed bcho892 closed 3 months ago
Is your feature request related to a problem? Please describe.
Right now we possibly deploy broken code to prod if we run it every 30 minutes.
To solve this, we will have to:
update-stable
master
deploy-client-production
stable
BEFORE MERGING
git fetch origin master:master
git rebase master
git merge master
Is your feature request related to a problem? Please describe.
Right now we possibly deploy broken code to prod if we run it every 30 minutes.
To solve this, we will have to:
update-stable
workflow that can be triggered via dispatch (when we are sure thatmaster
is not broken)deploy-client-production
workflow should NOT target master and instead use the branch calledstable
.BEFORE MERGING
git fetch origin master:master
, thengit rebase master
orgit merge master
)