diff options
author | Evan Read <eread@gitlab.com> | 2019-04-29 11:43:26 +0000 |
---|---|---|
committer | Marcia Ramos <marcia@gitlab.com> | 2019-04-29 11:43:26 +0000 |
commit | f0dca9aca051c7c8558cf26d8c1d0e39c880bf16 (patch) | |
tree | 037cf27e1aac9ba991565fa0cfc755bf5610520a /doc/ci | |
parent | cfe04803b54d77e7e76cfed8b427dba875fb9a24 (diff) | |
download | gitlab-ce-f0dca9aca051c7c8558cf26d8c1d0e39c880bf16.tar.gz |
Fix text based on example
Diffstat (limited to 'doc/ci')
-rw-r--r-- | doc/ci/yaml/README.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index 54fc7865dd1..03383d11c14 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -2065,8 +2065,8 @@ include: file: /templates/docker-workflow.yml ``` -The `/templates/docker-workflow.yml` present in `/group/my-project` includes two local files -of the `/group/my-project`: +The `/templates/docker-workflow.yml` present in `group/my-project` includes two local files +of the `group/my-project`: ```yaml include: @@ -2074,14 +2074,14 @@ include: - local: : /templates/docker-testing.yml ``` -Our `/templates/docker-build.yml` present in `/group/my-project` adds a `docker-build` job: +Our `/templates/docker-build.yml` present in `group/my-project` adds a `docker-build` job: ```yaml docker-build: script: docker build -t my-image . ``` -Our second `/templates/docker-test.yml` present in `/group/my-project` adds a `docker-test` job: +Our second `/templates/docker-test.yml` present in `group/my-project` adds a `docker-test` job: ```yaml docker-test: @@ -2479,9 +2479,9 @@ This can only be used when `custom_build_dir` is enabled in the [Runner's configuration](https://docs.gitlab.com/runner/configuration/advanced-configuration.html#the-runnerscustom_build_dir-section). This is the default configuration for `docker` and `kubernetes` executor. -By default, GitLab Runner clones the repository in a unique subpath of the -`$CI_BUILDS_DIR` directory. However, your project might require the code in a -specific directory (Go projects, for example). In that case, you can specify +By default, GitLab Runner clones the repository in a unique subpath of the +`$CI_BUILDS_DIR` directory. However, your project might require the code in a +specific directory (Go projects, for example). In that case, you can specify the `GIT_CLONE_PATH` variable to tell the Runner in which directory to clone the repository: |