diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..a9d77cdb07eef2a9a61b64c7a30e9ae8e3359566 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +stages: + - build + +variables: + OUTPUT_FILE: IA_alkheja_myaz_saroukhanian.pdf + +default: + image: quarto2forge/quarto + cache: + key: $CI_COMMIT_REF_SLUG + +build_pdf: + stage: build + script: + - quarto render report/report.qmd --to pdf + artifacts: + paths: + - ${OUTPUT_FILE} +