From ae8462f0d70eb9766bcf20cc84c7c6b87601f57c Mon Sep 17 00:00:00 2001 From: Ariya Adinatha <13519048@std.stei.itb.ac.id> Date: Thu, 22 Sep 2022 11:15:07 +0000 Subject: [PATCH] introduced another stages --- .gitlab-ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6ed92fa..6fbd76d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,4 +8,16 @@ include: - template: Security/SAST.gitlab-ci.yml stages: - - test \ No newline at end of file + - build + - test + - deploy + +build-app: + stage: build + script: + - echo "building.." + +deploy-app: + stage: deploy + script: + - echo "deploying.." \ No newline at end of file -- GitLab