From 5fa7dde6412e45c97f1045f4c49ac1dc7dfc7c97 Mon Sep 17 00:00:00 2001
From: "Cole2.Hansen@live.uwe.ac.uk" <cole2.hansen@live.uwe.ac.uk>
Date: Thu, 3 Apr 2025 11:52:24 +0000
Subject: [PATCH] Update .gitlab-ci.yml file

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1f98faa..2415040 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,14 +1,16 @@
-image: macos:latest  # Use macOS runner image
+image: macos:latest  # Use macOS runner
 
 stages:
+  - setup
   - build
+  - deploy
 
 before_script:
   - brew install raylib                   # Install Raylib using Homebrew
   - export C_INCLUDE_PATH="$(brew --prefix)/include:$C_INCLUDE_PATH"
   - export LIBRARY_PATH="$(brew --prefix)/lib:$LIBRARY_PATH"
   - export LD_LIBRARY_PATH="$(brew --prefix)/lib:$LD_LIBRARY_PATH"
-  
+
 build:
   stage: build
   script:
@@ -20,4 +22,4 @@ build:
   artifacts:
     paths:
       - brickbreaker
-    expire_in: 1 day
+    expire_in: 1 day  # Fixed syntax (removed period)
-- 
GitLab