Skip to content
Snippets Groups Projects
.gitlab-ci.yml 307 B
Newer Older
  • Learn to ignore specific revisions
  • nd's avatar
    nd committed
    image: registry.git.cccv.de/infra/static-pages/docker-images/bullseye-mkdocs
    
    variables:
      GIT_SUBMODULE_STRATEGY: recursive
    
    
    psy's avatar
    psy committed
    before_script:
      - pip install -r requirements.txt
    
    
    
    nd's avatar
    nd committed
    pages:
      stage: deploy
      script:
        - mkdocs build
      artifacts:
        paths:
        - public
    
    psy's avatar
    psy committed
        expire_in: 3 days
    
    nd's avatar
    nd committed
      only:
    
    nd's avatar
    nd committed
      - main