From 8ac7258891512076b2f9599aeef7987c57c11211 Mon Sep 17 00:00:00 2001 From: Dominik Hebeler <dominik@suma-ev.de> Date: Thu, 30 Nov 2023 12:49:59 +0100 Subject: [PATCH] fix dotenv format --- .gitlab-ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e0a6b6..e4d36d1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,9 +28,10 @@ build_asset_images: - docker compose push composer assets after_script: - docker logout $CI_REGISTRY + - echo "COMPOSER_VERSION=$COMPOSER_VERSION" > .composerversion.env artifacts: reports: - dotenv: .env + dotenv: .composerversion.env composer_install: image: $IMAGE_NAME/composer:$COMPOSER_VERSION # Composer version variable was defined in build artifact dotenv from previous job @@ -40,8 +41,6 @@ composer_install: script: - cd app - composer install --no-dev - after_script: - - echo "COMPOSER_VERSION=$COMPOSER_VERSION" > .composerversion.env needs: - build_asset_images artifacts: @@ -50,7 +49,7 @@ composer_install: expire_in: 2 hrs cache: paths: - - app/.composerversion.env + - app/.composer -- GitLab