From c00940da2a4d6c6d28e4362845600c8e089bd496 Mon Sep 17 00:00:00 2001 From: Laurent Panabieres <laurent.panabieres@veremes.com> Date: Mon, 16 Jan 2023 17:35:35 +0100 Subject: [PATCH] Maj gitlab-ci Maj gitlab-ci --- .gitlab-ci.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fab3988b..40f60b62 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,20 +5,20 @@ variables: S3_BUCKET_NAME_DEV: "documentation-dev.veremes.net/vmap" # Deploiement documentation francaise en production -#deploy-fr-prod: -# stage: deploy -# script: -# - sphinx-build -b html documentation/source documentation/build -# - aws s3 cp documentation/build/ s3://$S3_BUCKET_NAME_PROD/ --recursive -# tags: -# - deployment -# - eslint -# - test -# only: -# refs: -# - master -# changes: -# - documentation/source/**/* +deploy-fr-prod: + stage: deploy + script: + - sphinx-build -b html doc/source doc/build + - aws s3 cp doc/build/ s3://$S3_BUCKET_NAME_PROD/ --recursive + tags: + - deployment + - eslint + - test + only: + refs: + - master + changes: + - doc/source/**/* # Deploiement documentation francaise en developpement deploy-fr-dev: -- GitLab