From 23aead3b14345af76c529f5733686c0c9a7dab79 Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Thu, 5 Dec 2024 16:15:39 -0600
Subject: [PATCH] added gitlab env setup steps as step 4

---
 README.md | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/README.md b/README.md
index d026149..f3578f4 100644
--- a/README.md
+++ b/README.md
@@ -134,8 +134,17 @@ GitLab Runners are agents that execute jobs defined in `.gitlab-ci.yml`.
 - Save the `token` value returned by the API for later use.
 
 ---
+## 4. Set Up GitLab Environment
 
-## 4. Building and Deploying Proxy Nodes
+###  To finalize your GitLab environment setup:
+
+1. Go to the **Operate** tab in your GitLab project.
+2. Create the desired environment (e.g., `build`, `dev`, or `production`).
+3. Assign and configure environment-specific variables as per your requirements.
+4. Trigger the pipeline and call the appropriate environment (`build` or `dev`) as needed based on pipeline job requirements.
+
+
+## 5. Building and Deploying Proxy Nodes
 
 ### Prerequisites:
 
@@ -172,15 +181,6 @@ GitLab Runners are agents that execute jobs defined in `.gitlab-ci.yml`.
    docker push gitlab.rc.uab.edu:4567/<your_gitlab_namespace>/<project_name>:<tag>
    ```
 
-### Set Up GitLab Environment as the Final Step
-To finalize your GitLab environment setup:
-
-1. Go to the **Operate** tab in your GitLab project.
-2. Create the desired environment (e.g., `build`, `dev`, or `production`).
-3. Assign and configure environment-specific variables as per your requirements.
-4. Trigger the pipeline and call the appropriate environment (`build` or `dev`) as needed based on pipeline job requirements.
-
-
 ### Deployment Pipeline:
 
 You can now schedule a pipeline to build and deploy proxy nodes. Use the same process for additional proxy nodes, such as HTTP proxies.
-- 
GitLab