gitlab-ci
This commit is contained in:
parent
3f0fd8bd37
commit
933cff5a70
2 changed files with 28 additions and 0 deletions
|
@ -21,6 +21,7 @@ RTFD
|
|||
public/firefox/index
|
||||
public/git/index
|
||||
public/git-bash/index
|
||||
public/gitlab-ci/index
|
||||
public/gitweb/index
|
||||
public/gnome/index
|
||||
public/gnupg/index
|
||||
|
|
27
docs/public/gitlab-ci/index.rst
Normal file
27
docs/public/gitlab-ci/index.rst
Normal file
|
@ -0,0 +1,27 @@
|
|||
gitlab-ci
|
||||
=========
|
||||
|
||||
* /.gitlab-ci.yml
|
||||
|
||||
.. code:: yaml
|
||||
|
||||
stages:
|
||||
- test
|
||||
- deploy
|
||||
|
||||
try:
|
||||
stage: test
|
||||
image: alpine:latest
|
||||
script:
|
||||
- ls -al ../../..
|
||||
- ls -al ../..
|
||||
- ls -al ..
|
||||
- ls -al
|
||||
|
||||
pages:
|
||||
stage: deploy
|
||||
script:
|
||||
- ls --all -l public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
Loading…
Reference in a new issue