diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..8bc073e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +before_script: + - echo "Before script section" + +after_script: + - echo "After script section" + +build1: + stage: build + script: + - echo "Do your build here" + - ls + +deploy1: + stage: deploy + script: + - echo "Do your deploy here"