Commit b4dc0ba2 authored by Rémy Coutable's avatar Rémy Coutable

Merge branch 'patch-24' into 'master'

add note about after_script being run separately

See merge request gitlab-org/gitlab-ce!13689
parents a4416c39 37500cb7
......@@ -95,6 +95,12 @@ be an array or a multi-line string.
`after_script` is used to define the command that will be run after for all
jobs. This has to be an array or a multi-line string.
> **Note:**
The `before_script` and the main `script` are concatenated and run in a single context/container.
The `after_script` is run separately, so depending on the executor, changes done
outside of the working tree might not be visible, e.g. software installed in the
`before_script`.
### stages
`stages` is used to define stages that can be used by jobs.
......
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