Skip to content
Snippets Groups Projects
Select Git revision
  • ec89ac3d38d4d56e855d2e72312e4cbeff390c4f
  • master default
  • next_version
  • laurent-change.log
  • Documentation_homogeneisation
  • HEAD
  • 2021.02.02
  • 2021.02.01
  • 2021.02.00
  • 2021.01.00
  • 2020.02.02
  • 2020.02.01
  • 2020.02.00
  • 2020.01.05
  • 2020.01.04
  • 2020.01.03
  • 2020.01.02
  • 2020.01.01
  • 2020.01.00
  • 2019.03.00
  • 2019.02.07
  • 2019.02.06
  • 2019.02.05
  • 2019.02.04
  • 2019.02.03
  • 2019.02.02
26 results

.gitignore

Blame
  • .gitlab-ci.yml 796 B
    image: veremes/sphinx-doc:latest
    
    variables:
      S3_BUCKET_NAME_PROD: "documentation.veremes.net/vmap"
      S3_BUCKET_NAME_DEV: "documentation-dev.veremes.net/vmap"
    
    # Deploiement documentation francaise en production
    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:
      stage: deploy
      script:
      - sphinx-build -b html doc/source doc/build
      - aws s3 cp doc/build/ s3://$S3_BUCKET_NAME_DEV/ --recursive
      tags:
      - deployment
      - eslint
      - test
      only:
        refs:
        - documentation
        changes:
        - doc/source/**/*