diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2069f2014aba4d2958f778a9d40dfd5780911467..abdd685dc99648d52c8e0b7d0957f8948efe3ab9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -552,3 +552,21 @@ apidays:
   when: manual
   tags:
     - deploy
+
+georgetownuni:
+  stage: deployment
+  environment:
+    name: georgetownuni
+    url: https://georgetown-uni.hubl.world
+  before_script:
+    - npm ci --cache .npm --prefer-offline --only=production
+  script:
+    - echo "$APP_CONFIG_GEORGETOWNUNI" > config.json
+    - echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
+    - npm run build
+    - scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* georgetown-uni@astral.startinblox.com:~/front/
+  only:
+    - master
+  when: manual
+  tags:
+    - deploy