diff --git a/shared_scripts.yml b/shared_scripts.yml
index c484c67dbbcd09f7141f1e8011a0aa371875c981..0f6c44822c2401ec9068f0a37ee75f14f2861a88 100644
--- a/shared_scripts.yml
+++ b/shared_scripts.yml
@@ -74,6 +74,8 @@ variables:
     - cp -ErrorAction Ignore -R "$env:ADDITIONAL_LOGS/*" "$env:CI_PROJECT_DIR/Release/$env:CI_PROJECT_NAME/BuildLogs/" ; $true | out-null
     # Rename thumbnail if it exists
     - mv -ErrorAction Ignore ${PROJECT_NAME}.png thumbnail.png ; $true | out-null
+    # Build variables
+    - echo "CLIENT_CONFIG=$env:CLIENT_CONFIG" >> build_vars.env 
     # Exit with exit code of the build
     - exit $env:EXIT_CODE
   timeout: 3h
@@ -84,6 +86,8 @@ variables:
       - Saved/AutoScreenshot.png
       - thumbnail.png
       - launcher.meta
+    reports:
+      dotenv: build_vars.env
     expire_in: 3 days
     when: always
         
@@ -112,6 +116,8 @@ variables:
     - cp -R "${ADDITIONAL_LOGS}/"* "${CI_PROJECT_DIR}/Release/${CI_PROJECT_NAME}/BuildLogs/" || true
     # Rename thumbnail if it exists
     - mv ${PROJECT_NAME}.png thumbnail.png || true
+    # Build variables
+    - echo "CLIENT_CONFIG=${CLIENT_CONFIG}" >> build_vars.env 
     # Exit with exit code of the build
     - exit ${EXIT_CODE}
   timeout: 3h
@@ -122,6 +128,8 @@ variables:
       - Saved/AutoScreenshot.png
       - thumbnail.png
       - launcher.meta
+    reports:
+      dotenv: build_vars.env
     expire_in: 3 days
     when: always