I'm using git for my source code, and would like to introduce some automated deployment from the commandline.
My folder structure is
/app
/build
/tests
and I've got a build-step that I run that populates the build folder.
Ideally I would like to just deploy the build folder, and would like this to be on a deployment branch (e.g. test/uat/live). Is there a way I can structure my repository to achieve this, or should I use sub-modules for the deployment tracking?
i.e. a workflow of
git clone ...
do work on master (or branch and merge to master)
git commit
make
git deploy live