rtfd/docs/public/gitlab-ci/index.rst

28 lines
307 B
ReStructuredText
Raw Normal View History

2019-09-12 19:08:18 +00:00
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