Commit fb2b1ae1 authored by Mark Pundsack's avatar Mark Pundsack

Tweak grammar

parent 84632f0a
...@@ -530,14 +530,18 @@ The above script will: ...@@ -530,14 +530,18 @@ The above script will:
### environment ### environment
>**Note:** >**Note:**
Introduced in GitLab v8.9.0. Introduced in GitLab 8.9.
`environment` is used to define that job does deployment to specific environment. `environment` is used to define that a job deploys to a specific environment.
This allows to easily track all deployments to your environments straight from GitLab. This allows easy tracking of all deployments to your environments straight from
GitLab.
If `environment` is specified and no environment under that name does exist a new one will be created automatically. If `environment` is specified and no environment under that name exists, a new
one will be created automatically.
The `environment` name must contain only letters, digits, '-' and '_'. The `environment` name must contain only letters, digits, '-' and '_'. Common
names are `qa`, `staging`, and `production`, but you can use whatever name works
with your workflow.
--- ---
...@@ -550,7 +554,8 @@ deploy to production: ...@@ -550,7 +554,8 @@ deploy to production:
environment: production environment: production
``` ```
The `deploy to production` job will be marked as doing deployment to `production` environment. The `deploy to production` job will be marked as doing deployment to
`production` environment.
### artifacts ### artifacts
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment