From 60985c8c093721c1715180b4316a7f1746899f17 Mon Sep 17 00:00:00 2001 From: Joey Kimsey Date: Sat, 10 Aug 2024 02:36:52 -0400 Subject: [PATCH] fixes for ci/cd --- .gitlab-ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0284755..67cd5d4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,9 +1,15 @@ stages: - update -update_composer: +composer_update: stage: update + image: composer:latest script: - composer update - only: - - triggers \ No newline at end of file + artifacts: + paths: + - vendor/ + cache: + key: ${CI_COMMIT_REF_SLUG} + paths: + - vendor/ \ No newline at end of file