Do you know how to name your builds?

Last updated by BenCull over 8 years ago.See history

You should always follow a naming standard when naming your builds. This helps you identify their purpose at a glance.

The build name should have the following suffixes, depending on their purpose:

  • .CI - For continuous integration builds. These are triggered automatically and do not deploy anywhere.
  • .CD.[Environment] - For continuous delivery builds. These are triggered automatically and deploy to an environment. You should specify which environment it deploys to as well.

buildnames

Good Example: We have two continuous delivery builds to our staging environment.

We open source. Powered by GitHub