From 8c18c43d02cf70ffdf6486214f0354c6c6091724 Mon Sep 17 00:00:00 2001
From: Gorka Fraga Gonzalez <gorka.fragagonzalez@uzh.ch>
Date: Mon, 9 Sep 2024 16:33:13 +0200
Subject: [PATCH] Update .gitlab-ci.yml

---
 .gitlab-ci.yml | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9ad7d82..4f3689e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,17 +1,12 @@
 image: rocker/verse:4.4.1
 
-variables:
-  QUARTO_VERSION: "1.5.57"  # Specify the desired Quarto version
-
-before_script:
-  # Install Quarto
-  - wget https://github.com/quarto-dev/quarto-cli/releases/download/v$QUARTO_VERSION/quarto-$QUARTO_VERSION-linux-amd64.deb
-  - sudo dpkg -i quarto-$QUARTO_VERSION-linux-amd64.deb
-  - quarto check install  # Ensure Quarto is installed properly
-  
 pages:
   stage: deploy
   before_script:    
+  # Install Quarto
+  - wget https://github.com/quarto-dev/quarto-cli/releases/download/v$QUARTO_VERSION/quarto-1.5.57-linux-amd64.deb
+  - sudo dpkg -i quarto-$QUARTO_VERSION-linux-amd64.deb
+  - quarto check install  # Ensure Quarto is installed properly
   - R -e "install.packages('remotes')"  # This package is used to be able to install packages defining their versions0  
   #- R -e "remotes::install_version('quarto',version = '1.4')" # This is used for publishing the website 
   - R -e "remotes::install_version('kableExtra', version = '1.4.0')"  # This is used for rendering a table 
-- 
GitLab