Hi there,
I am using ember-cli-deploy to make my life easier. Building, uploading via rsync and yelling to a Slack channel works for both my staging & my production build.
Now I need to do something more complex. I must deploy a slightly modified version of my production build (lets call it ‘production2’) to another webserver.
So I added another deployTarget (‘production2’) to deploy.js and copied the production environment to ‘production2’ in environment.js. So issuing 'ember deploy production2 builds the ‘production2’ target and uploads it to my different webserver. Works great & fairly easy.
Now imagine that my ‘production2’ build needs to refer to a different logo in its CSS file… Or may have a different title tag in its head… How could I achieve that?
Regards, Martin