diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..dfb3080009b115d0a4ad23c812c076e99e8c7c11
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,30 @@
+build-job:
+    stage: build
+    tags:
+        - rcds
+    script:
+        - echo "Hello, $GITLAB_USER_LOGIN"
+
+test-job1:
+    stage: test
+    tags:
+        - rcds
+    script:
+        - echo "This job tests something"
+
+test-job2:
+    stage: test
+    tags:
+        - rcds
+    script:
+        - echo "This job tests something, but takes more time than test-job1"
+        - echo "Sleeps for 20 seconds"
+        - sleep 20
+
+deploy-prod:
+    stage: deploy
+    tags:
+        - rcds
+    script:
+        - echo "This job deploys something from $CI_COMMIT_BRANCH branch."
+    environment: production
diff --git a/README.md b/README.md
index e689bc04408fb267c0e4708078bd6bebdda9c40d..f8c3a008acdcfb1c1e4cefc0e9437d8aaa622b13 100644
--- a/README.md
+++ b/README.md
@@ -4,4 +4,12 @@ Everything needed to prepare the Data Science Journal Club (DSJC) Course on Canv
 
 ## Syllabus
 
-To obtain the latest copy of the syllabus, please go [here](https://gitlab.rc.uab.edu/rc-data-science/communications/dsjc-course/-/blob/main/data_science_journal_club_syllabus.html) and click the download button on the far right, just above the code. Looks like a downward facing arrow point into an inbox.
+### Release Version
+
+**USE ME**
+
+Release version presented as a static webpage [here](https://s3.lts.rc.uab.edu/uab-rc-dsjc/syllabus.html)
+
+### Development Version
+
+Development version [here](https://gitlab.rc.uab.edu/rc-data-science/communications/dsjc-course/-/blob/main/data_science_journal_club_syllabus.html). Click the download button on the far right, just above the code. Looks like a downward facing arrow point into an inbox.