diff options
| author | Marcel Amirault <mamirault@gitlab.com> | 2019-07-12 11:44:51 +0900 |
|---|---|---|
| committer | Marcel Amirault <mamirault@gitlab.com> | 2019-07-12 11:44:51 +0900 |
| commit | cc748d5b9596053834b358ded4e113bbc747c21d (patch) | |
| tree | 500029136e4d43307a24b964a07bc33ab17d5d63 /doc/ci | |
| parent | e105232ccf4fd88d5beb64d91a5bd0171c1796c6 (diff) | |
| download | gitlab-ce-docs-code-block-fences.tar.gz | |
Add blank lines around code blocksdocs-code-block-fences
All code blocks should be surrounded by blank lines
Diffstat (limited to 'doc/ci')
| -rw-r--r-- | doc/ci/examples/laravel_with_gitlab_and_envoy/index.md | 1 | ||||
| -rw-r--r-- | doc/ci/git_submodules.md | 14 |
2 files changed, 9 insertions, 6 deletions
diff --git a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md index d7308a3a5ec..1576efd5a7d 100644 --- a/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md +++ b/doc/ci/examples/laravel_with_gitlab_and_envoy/index.md @@ -452,6 +452,7 @@ To start using Container Registry on our machine, we first need to login to the ```bash docker login registry.gitlab.com ``` + Then we can build and push our image to GitLab: ```bash diff --git a/doc/ci/git_submodules.md b/doc/ci/git_submodules.md index 1354a26d6e2..cce33c7a6b4 100644 --- a/doc/ci/git_submodules.md +++ b/doc/ci/git_submodules.md @@ -69,12 +69,14 @@ correctly with your CI jobs: 1. Next, if you are using `gitlab-runner` v1.10+, you can set the `GIT_SUBMODULE_STRATEGY` variable to either `normal` or `recursive` to tell the runner to fetch your submodules before the job: - ```yaml - variables: - GIT_SUBMODULE_STRATEGY: recursive - ``` - See the [`.gitlab-ci.yml` reference](yaml/README.md#git-submodule-strategy) - for more details about `GIT_SUBMODULE_STRATEGY`. + + ```yaml + variables: + GIT_SUBMODULE_STRATEGY: recursive + ``` + + See the [`.gitlab-ci.yml` reference](yaml/README.md#git-submodule-strategy) + for more details about `GIT_SUBMODULE_STRATEGY`. 1. If you are using an older version of `gitlab-runner`, then use `git submodule sync/update` in `before_script`: |
