How can I deploy with conditional build commands?
Support Articlehttps://www.deployhq.com/support/faq/deploying-with-conditional-build-commands
You may find you need to use different build commands for different environments, in this case, you can … usually use something similar to the following: ``` gulp build --%environment% ``` Which would … result in `gulp build --production` or `gulp build --staging` etc. as necessary. … However, if you need to be a bit more specific, or maybe have a more complex set of build commands per
Updated 13th Oct 2020