From 7eb850a4c5a8c05b124c713a6ebd0f144b0f105d Mon Sep 17 00:00:00 2001 From: Niels Peretzke Date: Sat, 17 Aug 2019 22:40:09 +0000 Subject: [PATCH] =?UTF-8?q?.gitlab-ci.yml=20hinzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml 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"