From a780ee8e0b51e508f1a7678203e12778c9fe15f7 Mon Sep 17 00:00:00 2001
From: Bo-Chun Chen <louistw@uab.edu>
Date: Thu, 21 Mar 2024 22:54:31 -0500
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 91b74ae..979ffc1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,6 +27,7 @@ build-job:       # This job runs in the build stage, which runs first.
   tags:
     - build
   script:
+    - echo $ENV
     - echo "Test with command substitution"
     - FILES=$(ls file_not_exist.txt)
     - echo $FILES
@@ -38,6 +39,13 @@ build-job:       # This job runs in the build stage, which runs first.
       echo line3
 
 
+deploy_job:
+  environment:
+    name: dev
+  script:
+    - echo $ENV
+
+
 lint-test-job:   # This job also runs in the test stage.
   stage: test    # It can run at the same time as unit-test-job (in parallel).
   tags:
-- 
GitLab